This commit is contained in:
2026-07-15 21:44:13 +08:00
parent 024b6614ba
commit 4794be896c
22 changed files with 1041 additions and 74 deletions

View File

@@ -22,4 +22,6 @@ type UserApplicationService interface {
ListUsers(ctx context.Context, query *queries.ListUsersQuery) (*responses.UserListResponse, error)
GetUserDetail(ctx context.Context, userID string) (*responses.UserDetailResponse, error)
GetUserStats(ctx context.Context) (*responses.UserStatsResponse, error)
BlacklistUser(ctx context.Context, cmd *commands.BlacklistUserCommand) error
UnblacklistUser(ctx context.Context, cmd *commands.UnblacklistUserCommand) error
}