24 lines
339 B
Go
24 lines
339 B
Go
|
package main
|
||
|
|
||
|
import "C"
|
||
|
import (
|
||
|
"docDemo/router"
|
||
|
"fmt"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
//func init() {
|
||
|
// client.InitMySQLClient()
|
||
|
//}
|
||
|
func main() {
|
||
|
app := gin.Default()
|
||
|
|
||
|
// 初始化路由
|
||
|
router.InitRouter(app.Group("/api"))
|
||
|
|
||
|
// 订阅消息
|
||
|
//go queues.NewQueuesConsumer().SubscribeGetReport()
|
||
|
|
||
|
app.Run(fmt.Sprintf(":8889"))
|
||
|
}
|