mirror of
https://github.com/cloudreve/Cloudreve.git
synced 2025-12-26 00:12:50 +00:00
14 lines
113 B
Go
14 lines
113 B
Go
package main
|
|
|
|
import (
|
|
"Cloudreve/routers"
|
|
)
|
|
|
|
func main() {
|
|
|
|
api := routers.InitRouter()
|
|
|
|
api.Run(":5000")
|
|
|
|
}
|