coai/manager/router.go
2023-10-02 21:28:53 +08:00

9 lines
165 B
Go

package manager
import "github.com/gin-gonic/gin"
func Register(app *gin.Engine) {
app.GET("/chat", ChatAPI)
app.POST("/v1/chat/completions", TranshipmentAPI)
}