14 lines
201 B
Go
14 lines
201 B
Go
|
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,
|
||
|
})
|
||
|
}
|