bicycle/bicycle_test.go

12 lines
128 B
Go
Raw Permalink Normal View History

2023-02-28 07:06:06 +00:00
package bicycle
import (
"net/http"
"testing"
)
func TestMain(t *testing.T) {
Start()
http.ListenAndServe(":5000", nil)
}