chore(server): move services (#8133)

move services
This commit is contained in:
Daniel Dietzler
2024-03-21 00:07:30 +01:00
committed by GitHub
parent 6d9e7694b1
commit ef4a492cb1
83 changed files with 104 additions and 100 deletions

View File

@@ -1,12 +1,12 @@
import { Body, Controller, HttpCode, HttpStatus, Next, Param, Post, Res, StreamableFile } from '@nestjs/common';
import { ApiTags } from '@nestjs/swagger';
import { NextFunction, Response } from 'express';
import { DownloadService } from 'src/domain/download/download.service';
import { AssetIdsDto } from 'src/dtos/asset.dto';
import { AuthDto } from 'src/dtos/auth.dto';
import { DownloadInfoDto, DownloadResponseDto } from 'src/dtos/download.dto';
import { asStreamableFile, sendFile } from 'src/immich/app.utils';
import { Auth, Authenticated, FileResponse, SharedLinkRoute } from 'src/middleware/auth.guard';
import { DownloadService } from 'src/services/download.service';
import { UUIDParamDto } from 'src/validation';
@ApiTags('Download')