11 lines
171 B
Go
11 lines
171 B
Go
package controllers
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
type CallbackController struct {
|
|
}
|
|
|
|
func (t *CallbackController) Msg(c *gin.Context) {
|
|
c.JSON(200, &CallBack{})
|
|
}
|