mirror of
https://github.com/immich-app/immich
synced 2026-08-22 13:13:05 +00:00
Create database and model for EXIF
This commit is contained in:
parent
03b67a98d3
commit
ea9766a60b
9 changed files with 175 additions and 7 deletions
|
|
@ -2,6 +2,7 @@ import { BullModule } from '@nestjs/bull';
|
|||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { AssetEntity } from '../../api-v1/asset/entities/asset.entity';
|
||||
import { BackgroundTaskProcessor } from './background-task.processor';
|
||||
import { BackgroundTaskService } from './background-task.service';
|
||||
|
||||
@Module({
|
||||
|
|
@ -16,6 +17,7 @@ import { BackgroundTaskService } from './background-task.service';
|
|||
}),
|
||||
TypeOrmModule.forFeature([AssetEntity]),
|
||||
],
|
||||
providers: [BackgroundTaskService],
|
||||
providers: [BackgroundTaskService, BackgroundTaskProcessor],
|
||||
exports: [BackgroundTaskService],
|
||||
})
|
||||
export class BackgroundTaskModule {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue