15 lines
205 B
Go
15 lines
205 B
Go
package user
|
|
|
|
import (
|
|
"framework_v2/internal/consts"
|
|
"github.com/gin-gonic/gin"
|
|
"net/http"
|
|
)
|
|
|
|
func CurrentUser(req *consts.Request) {
|
|
req.Http.JSON(http.StatusOK, gin.H{
|
|
"req": req.User.Sub,
|
|
})
|
|
|
|
}
|