コード例 #1
0
ファイル: ember.go プロジェクト: bubblebox/server
// Setup will configure the router group for severing a static
// Ember.js application.
func Setup(group *gin.RouterGroup) {
	group.Use()
	{
		group.Static("", "./public/")
	}
}