format codebase with prettier

This commit is contained in:
2026-01-04 16:17:36 +01:00
parent 77f15b6dd1
commit e3f7a778c7
63 changed files with 786 additions and 542 deletions

View File

@@ -1,19 +1,19 @@
import { LoginDTO, CreateUserDTO, AuthResponse } from '@caldav/shared';
import { LoginDTO, CreateUserDTO, AuthResponse } from "@caldav/shared";
export const AuthService = {
login: async (_credentials: LoginDTO): Promise<AuthResponse> => {
throw new Error('Not implemented');
throw new Error("Not implemented");
},
register: async (_data: CreateUserDTO): Promise<AuthResponse> => {
throw new Error('Not implemented');
throw new Error("Not implemented");
},
logout: async (): Promise<void> => {
throw new Error('Not implemented');
throw new Error("Not implemented");
},
refresh: async (): Promise<AuthResponse> => {
throw new Error('Not implemented');
throw new Error("Not implemented");
},
};