mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:39:03 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			596 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			596 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { activityApi } from './activity-api';
 | |
| import { albumApi } from './album-api';
 | |
| import { apiKeyApi } from './api-key-api';
 | |
| import { assetApi } from './asset-api';
 | |
| import { authApi } from './auth-api';
 | |
| import { libraryApi } from './library-api';
 | |
| import { partnerApi } from './partner-api';
 | |
| import { serverInfoApi } from './server-info-api';
 | |
| import { sharedLinkApi } from './shared-link-api';
 | |
| import { userApi } from './user-api';
 | |
| 
 | |
| export const api = {
 | |
|   activityApi,
 | |
|   authApi,
 | |
|   apiKeyApi,
 | |
|   assetApi,
 | |
|   libraryApi,
 | |
|   serverInfoApi,
 | |
|   sharedLinkApi,
 | |
|   albumApi,
 | |
|   userApi,
 | |
|   partnerApi,
 | |
| };
 |