mirror of
https://github.com/cloudreve/cloudreve.git
synced 2025-10-28 23:26:01 +08:00
19 lines
164 B
Go
19 lines
164 B
Go
package main
|
|
|
|
import (
|
|
"Cloudreve/models"
|
|
"Cloudreve/routers"
|
|
)
|
|
|
|
func init() {
|
|
model.Init()
|
|
}
|
|
|
|
func main() {
|
|
|
|
api := routers.InitRouter()
|
|
|
|
api.Run(":5000")
|
|
|
|
}
|