go_ops/main.go
2020-09-29 10:21:25 +08:00

12 lines
147 B
Go

package main
import (
"github.com/astaxie/beego"
_ "go_ops/routers"
)
func main() {
beego.SetStaticPath("/down1", "download1")
beego.Run()
}