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

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