0c5b71694f
* Chore: Add user service method UpdateLastSeenAt * Fix lint
17 lines
556 B
Go
17 lines
556 B
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Service interface {
|
|
Create(context.Context, *CreateUserCommand) (*User, error)
|
|
Delete(context.Context, *DeleteUserCommand) error
|
|
GetByID(context.Context, *GetUserByIDQuery) (*User, error)
|
|
GetByLogin(context.Context, *GetUserByLoginQuery) (*User, error)
|
|
GetByEmail(context.Context, *GetUserByEmailQuery) (*User, error)
|
|
Update(context.Context, *UpdateUserCommand) error
|
|
ChangePassword(context.Context, *ChangeUserPasswordCommand) error
|
|
UpdateLastSeenAt(context.Context, *UpdateUserLastSeenAtCommand) error
|
|
}
|