mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 13:00:14 +09:00
10 lines
240 B
Go
10 lines
240 B
Go
package broadcast
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func Register(app *gin.RouterGroup) {
|
|
app.GET("/broadcast/view", ViewBroadcastAPI)
|
|
app.GET("/broadcast/list", GetBroadcastListAPI)
|
|
app.POST("/broadcast/create", CreateBroadcastAPI)
|
|
}
|