Cloudreve/main.go

14 lines
113 B
Go

package main
import (
"Cloudreve/routers"
)
func main() {
api := routers.InitRouter()
api.Run(":5000")
}