mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 21:10:18 +09:00
13 lines
233 B
Go
13 lines
233 B
Go
package conversation
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func Register(app *gin.Engine) {
|
|
router := app.Group("/conversation")
|
|
{
|
|
router.GET("/list", ListAPI)
|
|
router.GET("/load", LoadAPI)
|
|
router.GET("/delete", DeleteAPI)
|
|
}
|
|
}
|