コード例 #1
0
ファイル: example4.go プロジェクト: adilr00t/gotraining
// main is the entry point for the application.
func main() {
	handlers.Routes()

	log.Println("listener : Started : Listening on: http://localhost:4000")
	http.ListenAndServe(":4000", nil)
}
コード例 #2
0
ファイル: handlers_test.go プロジェクト: adilr00t/gotraining
func init() {
	handlers.Routes()
}