1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-06 03:46:47 +01:00
immich/server/e2e/client/index.ts

10 lines
184 B
TypeScript
Raw Normal View History

import { assetApi } from './asset-api';
import { authApi } from './auth-api';
import { libraryApi } from './library-api';
export const api = {
authApi,
assetApi,
libraryApi,
};