This commit is contained in:
wangchuxiao
2022-09-07 16:53:53 +08:00
parent 156e9e2fc7
commit d00b265347
4 changed files with 46 additions and 2 deletions
+6 -1
View File
@@ -64,9 +64,14 @@ func NewGinRouter() *gin.Engine {
{
messageCMSRouterGroup.POST("/get_chat_logs", messageCMS.GetChatLogs)
}
friendCMSRouterGroup := r2.Group("friend")
friendCMSRouterGroup := r2.Group("/friend")
{
friendCMSRouterGroup.POST("/get_friends", friend.GetUserFriends)
}
prometheusRouterGroup := r2.Group("/prometheus")
{
prometheusRouterGroup.GET("/metrics", prometheusHandler())
}
return baseRouter
}