智慧食堂
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
189 B

  1. package hdl
  2. import (
  3. "applet/app/admin/svc"
  4. "applet/app/e"
  5. "github.com/gin-gonic/gin"
  6. )
  7. func UserInfo(c *gin.Context) {
  8. admInfo := svc.GetUser(c)
  9. e.OutSuc(c, admInfo, nil)
  10. return
  11. }