String returns a human-readable representation (safe for logging).
()
| 48 | |
| 49 | // String returns a human-readable representation (safe for logging). |
| 50 | func (u *UserInfo) String() string { |
| 51 | return fmt.Sprintf("user=%s tenant=%s role=%s", u.Subject, u.TenantID, u.Role) |
| 52 | } |
| 53 | |
| 54 | type contextKey int |
| 55 |
no outgoing calls