You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cloudreve/main.go

30 lines
455 B

package main
import (
"github.com/HFO4/cloudreve/models"
"github.com/HFO4/cloudreve/pkg/conf"
"github.com/HFO4/cloudreve/routers"
"github.com/gin-gonic/gin"
"math/rand"
"time"
)
func init() {
conf.Init("conf/conf.ini")
model.Init()
rand.Seed(time.Now().UnixNano())
// Debug 关闭时,切换为生产模式
if !conf.SystemConfig.Debug {
gin.SetMode(gin.ReleaseMode)
}
}
func main() {
api := routers.InitRouter()
api.Run(":5000")
}