framework_v2/internal/http/controllers/user/main.go

14 lines
201 B
Go
Raw Normal View History

2024-06-13 07:36:51 +00:00
package user
import (
"framework_v2/internal/consts"
"github.com/gin-gonic/gin"
"net/http"
)
func CurrentUser(req *consts.Metadata) {
req.Http.JSON(http.StatusOK, gin.H{
"req": req.User,
})
}