add prisma
This commit is contained in:
9
src/services/auth-service.ts
Normal file
9
src/services/auth-service.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class AuthService {
|
||||
public login = (user: string, password: string): string => {
|
||||
return "token";
|
||||
};
|
||||
|
||||
public logout = (): boolean => {
|
||||
return true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user