Files
bicycle/bicycle_test.go
Thomas Klaehn 2f5fa70a30 Initial commit
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)
}