コード例 #1
0
ファイル: app.go プロジェクト: tomyhero/battleship-game
func main() {

	config, err := utils.NewConfigFromFile(flagValue.ConfigPath)
	if err != nil {
		fmt.Println(err)
		return
	}

	fmt.Println("Loaded Config", config)

	server := server.NewServer()
	server.ListenAndServe(flagValue.Port)
}
コード例 #2
0
ファイル: app.go プロジェクト: tomyhero/battleship-game
func main() {
	config, err := utils.NewConfigFromFile(flagValue.ConfigPath)
	if err != nil {
		fmt.Println(err)
		return
	}

	fmt.Println("Loaded Config", config)

	webApp := setupWebApp(config)

	setupGoji(webApp)

	goji.Serve()

}