Sign in
go
/
tour
/
c7374255f627de1d833c24ab73b75f6e7c25ef75
/
.
/
prog
/
exercise-http-handlers.go
blob: 74d82cd17316f7152aa42355e3cdc8b639f9eb17 [
file
] [
log
] [
blame
]
package main
import (
"net/http"
)
func main() {
// your http.Handle calls here
http.ListenAndServe("localhost:4000", nil)
}