gobuch/microservices/hanlder-impl/cmd/main.go

12 lines
160 B
Go
Raw Normal View History

2020-08-21 04:26:40 +00:00
package main
import (
"net/http"
"golang.source-fellows.com/samples/httphandler"
)
func main() {
http.ListenAndServe(":8080", &httphandler.MyHandler{})
}