mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
chore(server): remove unused storage repository variable from microservices app service (#7797)
remove unused storage repository from microservices app service
This commit is contained in:
parent
a6cd4b8427
commit
ec8fb0be83
1 changed files with 1 additions and 3 deletions
|
@ -3,7 +3,6 @@ import {
|
||||||
AuditService,
|
AuditService,
|
||||||
DatabaseService,
|
DatabaseService,
|
||||||
IDeleteFilesJob,
|
IDeleteFilesJob,
|
||||||
IStorageRepository,
|
|
||||||
JobName,
|
JobName,
|
||||||
JobService,
|
JobService,
|
||||||
LibraryService,
|
LibraryService,
|
||||||
|
@ -16,7 +15,7 @@ import {
|
||||||
SystemConfigService,
|
SystemConfigService,
|
||||||
UserService,
|
UserService,
|
||||||
} from '@app/domain';
|
} from '@app/domain';
|
||||||
import { Inject, Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AppService {
|
export class AppService {
|
||||||
|
@ -34,7 +33,6 @@ export class AppService {
|
||||||
private storageService: StorageService,
|
private storageService: StorageService,
|
||||||
private userService: UserService,
|
private userService: UserService,
|
||||||
private databaseService: DatabaseService,
|
private databaseService: DatabaseService,
|
||||||
@Inject(IStorageRepository) private storageRepository: IStorageRepository,
|
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
|
|
Loading…
Reference in a new issue