mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 04:50:14 +09:00
11 lines
170 B
Go
11 lines
170 B
Go
package adapter
|
|
|
|
import (
|
|
"chat/adapter/midjourney"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Register(app *gin.RouterGroup) {
|
|
app.POST("/mj/notify", midjourney.NotifyAPI)
|
|
}
|