rts-sim-testing-service/main.go

19 lines
307 B
Go
Raw Permalink Normal View History

package main
import "joylink.club/bj-rtsts-server/starter"
2023-07-14 16:28:47 +08:00
// @title CBTC测试系统API
// @version 1.0
2023-07-14 16:28:47 +08:00
// @description CBTC测试服务.
// @host localhost:9091
2023-07-14 16:28:47 +08:00
// @BasePath /
2023-07-14 16:28:47 +08:00
// @securityDefinitions.apikey JwtAuth
// @in header
// @name Authorization
func main() {
starter.Start()
}