gobuch/microservices/hanlder-impl/cmd/main.go
2020-08-21 06:26:40 +02:00

12 lines
160 B
Go

package main
import (
"net/http"
"golang.source-fellows.com/samples/httphandler"
)
func main() {
http.ListenAndServe(":8080", &httphandler.MyHandler{})
}