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

9 lines
160 B
Go

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