Skip to content

Commit 12d2b35

Browse files
committed
feat(domain): create action singup in domain port
1 parent 5acc2de commit 12d2b35

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/context/auth/domain/port/auth.port.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ export abstract class AuthPort {
44
abstract login(email: string, password: string): Promise<AuthUser>;
55
abstract logout(): Promise<void>;
66
abstract getCurrentSession(): Promise<AuthUser | null>;
7+
abstract singUp(email: string, password: string): Promise<AuthUser>;
78
}

0 commit comments

Comments
 (0)