20 lines
512 B
TypeScript
20 lines
512 B
TypeScript
import { LoginDTO, CreateUserDTO, AuthResponse } from "@caldav/shared";
|
|
|
|
export const AuthService = {
|
|
login: async (_credentials: LoginDTO): Promise<AuthResponse> => {
|
|
throw new Error("Not implemented");
|
|
},
|
|
|
|
register: async (_data: CreateUserDTO): Promise<AuthResponse> => {
|
|
throw new Error("Not implemented");
|
|
},
|
|
|
|
logout: async (): Promise<void> => {
|
|
throw new Error("Not implemented");
|
|
},
|
|
|
|
refresh: async (): Promise<AuthResponse> => {
|
|
throw new Error("Not implemented");
|
|
},
|
|
};
|