Initial project skeleton

This commit is contained in:
Deluan 2016-02-23 18:41:35 -05:00
commit 5d6fd4ee6b
12 changed files with 463 additions and 0 deletions

16
main.go Normal file
View file

@ -0,0 +1,16 @@
package main
import (
_ "github.com/deluan/gosonic/docs"
_ "github.com/deluan/gosonic/routers"
"github.com/astaxie/beego"
)
func main() {
if beego.BConfig.RunMode == "dev" {
beego.BConfig.WebConfig.DirectoryIndex = true
beego.BConfig.WebConfig.StaticDir["/swagger"] = "swagger"
}
beego.Run()
}