This commit is contained in:
wenxu12345
2022-04-06 15:33:16 +08:00
parent 83228d8aa6
commit ef4d0c3c42
15 changed files with 38 additions and 3 deletions
+2
View File
@@ -3,6 +3,7 @@ package main
import (
"Open_IM/internal/cms_api"
"Open_IM/pkg/utils"
"fmt"
"github.com/gin-gonic/gin"
)
@@ -11,5 +12,6 @@ func main() {
gin.SetMode(gin.ReleaseMode)
router := cms_api.NewGinRouter()
router.Use(utils.CorsHandler())
fmt.Println("start cms api server, port: ", 8000)
router.Run(":" + "8000")
}