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