This commit is contained in:
fallen-angle
2022-01-17 17:38:08 +08:00
parent 0a5379c8f3
commit 2280679053
19 changed files with 283 additions and 19 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"nCovTrack-Backend/global"
"nCovTrack-Backend/initialize"
)
func main() {
gin := initialize.Initialize()
gin.Run(global.GetListenOn())
}