mirror of
https://github.com/coaidev/coai.git
synced 2025-05-20 05:20:15 +09:00
8 lines
114 B
Go
8 lines
114 B
Go
package manager
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func Register(app *gin.Engine) {
|
|
app.GET("/chat", ChatAPI)
|
|
}
|