智慧食堂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 rivejä
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. }