コード例 #1
0
func init() {
	handlers.Routes()
}
コード例 #2
0
ファイル: endpoint.go プロジェクト: petersellars/go-hello
// main is the entry point for the application.
func main() {
	handlers.Routes()

	log.Println("listener : Started : Listening on :4000")
	http.ListenAndServe(":4000", nil)
}