2023-03-30 15:38:55 -04:00
|
|
|
import { AlbumEntity } from './album.entity';
|
|
|
|
|
import { APIKeyEntity } from './api-key.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
import { AssetFaceEntity } from './asset-face.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
import { AssetEntity } from './asset.entity';
|
2023-05-15 20:30:53 +03:00
|
|
|
import { PartnerEntity } from './partner.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
import { PersonEntity } from './person.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
import { SharedLinkEntity } from './shared-link.entity';
|
|
|
|
|
import { SmartInfoEntity } from './smart-info.entity';
|
|
|
|
|
import { SystemConfigEntity } from './system-config.entity';
|
2023-05-31 21:51:28 -04:00
|
|
|
import { TagEntity } from './tag.entity';
|
2023-05-15 20:30:53 +03:00
|
|
|
import { UserTokenEntity } from './user-token.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
import { UserEntity } from './user.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
|
|
|
|
|
export * from './album.entity';
|
|
|
|
|
export * from './api-key.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
export * from './asset-face.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
export * from './asset.entity';
|
|
|
|
|
export * from './exif.entity';
|
2023-05-15 20:30:53 +03:00
|
|
|
export * from './partner.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
export * from './person.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
export * from './shared-link.entity';
|
|
|
|
|
export * from './smart-info.entity';
|
|
|
|
|
export * from './system-config.entity';
|
|
|
|
|
export * from './tag.entity';
|
|
|
|
|
export * from './user-token.entity';
|
|
|
|
|
export * from './user.entity';
|
|
|
|
|
|
|
|
|
|
export const databaseEntities = [
|
|
|
|
|
AlbumEntity,
|
|
|
|
|
APIKeyEntity,
|
2023-05-15 20:30:53 +03:00
|
|
|
AssetEntity,
|
2023-05-17 13:07:17 -04:00
|
|
|
AssetFaceEntity,
|
2023-05-15 20:30:53 +03:00
|
|
|
PartnerEntity,
|
2023-05-17 13:07:17 -04:00
|
|
|
PersonEntity,
|
2023-03-30 15:38:55 -04:00
|
|
|
SharedLinkEntity,
|
|
|
|
|
SmartInfoEntity,
|
|
|
|
|
SystemConfigEntity,
|
2023-05-31 21:51:28 -04:00
|
|
|
TagEntity,
|
2023-05-15 20:30:53 +03:00
|
|
|
UserEntity,
|
2023-03-30 15:38:55 -04:00
|
|
|
UserTokenEntity,
|
|
|
|
|
];
|