Files
smt/controllers/auth.go
2023-03-28 14:27:59 +11:00

12 lines
172 B
Go

package controllers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Register(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"data": "hello from controller!"})
}