mindoc/main.go
lifei6671 c708784037 *
2017-05-01 16:40:35 +08:00

25 lines
422 B
Go

package main
import (
_ "github.com/go-sql-driver/mysql"
_ "github.com/lifei6671/godoc/routers"
"github.com/astaxie/beego"
"github.com/lifei6671/godoc/commands"
"fmt"
"os"
)
func main() {
commands.RegisterDataBase()
commands.RegisterModel()
commands.RegisterLogger()
commands.RegisterCommand()
commands.RegisterFunction()
beego.SetStaticPath("uploads","uploads")
fmt.Printf("%+v",os.Args)
beego.Run()
}