mirror of
https://github.com/Ravinou/borgwarehouse
synced 2026-03-15 14:55:45 +01:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
const ApiResponse = {
|
|
success: vi.fn(),
|
|
badRequest: vi.fn(),
|
|
unauthorized: vi.fn(),
|
|
forbidden: vi.fn(),
|
|
notFound: vi.fn(),
|
|
methodNotAllowed: vi.fn(),
|
|
validationError: vi.fn(),
|
|
serverError: vi.fn(),
|
|
};
|
|
|
|
export default ApiResponse;
|