box-o-sand/gotime/src/exercise-http-handlers.go

10 lines
104 B
Go
Raw Normal View History

package main
import (
"net/http"
)
func main() {
http.ListenAndServe("localhost:4000", nil)
}