(ctx context.Context, du domain.User)
| 13 | type UserCache interface { |
| 14 | Get(ctx context.Context, uid int64) (domain.User, error) |
| 15 | Set(ctx context.Context, du domain.User) error |
| 16 | } |
| 17 | |
| 18 | type userCache struct { |
no outgoing calls
no test coverage detected