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

21 lines
214 B

5 years ago
package main
5 years ago
import (
"Cloudreve/models"
"Cloudreve/pkg/conf"
5 years ago
"Cloudreve/routers"
)
5 years ago
func init() {
5 years ago
conf.Init("conf/conf.ini")
model.Init()
}
5 years ago
func main() {
5 years ago
api := routers.InitRouter()
api.Run(":5000")
5 years ago
}