You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
299 B
Go

package app
import (
"github.com/gin-gonic/gin"
v1 "miniapp/api/v1"
)
type AiKefuRouter struct{}
func (s *LoginRouter) InitAiKefuRouter(Router *gin.RouterGroup) {
aiRouter := Router.Group("ai")
baseApi := v1.ApiGroupApp.AppApiGroup.AiKefuApi
{
aiRouter.POST("", baseApi.SendMessage)
}
}