mindoc/main.go
lifei6671 ad67558b80 1、实现网站首页
2、实现文档阅读
3、实现项目发布
4、实现用户权限
2017-04-30 22:13:12 +08:00

23 lines
420 B
Go

package main
import (
_ "github.com/go-sql-driver/mysql"
_ "github.com/lifei6671/godoc/routers"
_ "github.com/garyburd/redigo/redis"
"github.com/astaxie/beego"
"github.com/lifei6671/godoc/commands"
)
func main() {
commands.RegisterDataBase()
commands.RegisterModel()
commands.RegisterLogger()
commands.RegisterCommand()
commands.RegisterFunction()
beego.SetStaticPath("uploads","uploads")
beego.Run()
}