bicycle/bicycle_test.go
2023-02-28 09:11:17 +01:00

12 lines
128 B
Go

package bicycle
import (
"net/http"
"testing"
)
func TestMain(t *testing.T) {
Start()
http.ListenAndServe(":5000", nil)
}