mirror of
https://github.com/coaidev/coai.git
synced 2025-05-20 05:20:15 +09:00
14 lines
267 B
Go
14 lines
267 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)
|
|
router.POST("/share", ShareAPI)
|
|
}
|
|
}
|