base_context.go 122 B

123456789
  1. package model
  2. type Context struct {
  3. User *ContextUser // User in context.
  4. }
  5. type ContextUser struct {
  6. *LoginUserRes
  7. }