(ctx context.Context, userID string)
| 84 | type UserStore interface { |
| 85 | GetUser(ctx context.Context, user string) (params.User, error) |
| 86 | GetUserByID(ctx context.Context, userID string) (params.User, error) |
| 87 | GetAdminUser(ctx context.Context) (params.User, error) |
| 88 | |
| 89 | CreateUser(ctx context.Context, user params.NewUserParams) (params.User, error) |
no outgoing calls