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