fix(server): lint import order (#3974)

* fix: use prettier extension

* chore: format fix
This commit is contained in:
Jason Rasmussen 2023-09-04 15:45:59 -04:00 committed by GitHub
parent 2069293cc1
commit 816d040d81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
58 changed files with 72 additions and 71 deletions

View file

@ -19,8 +19,8 @@ import {
} from '@app/domain';
import { Body, Controller, Get, HttpCode, HttpStatus, Param, Post, Put, Query, StreamableFile } from '@nestjs/common';
import { ApiOkResponse, ApiTags } from '@nestjs/swagger';
import { Authenticated, AuthUser, SharedLinkRoute } from '../app.guard';
import { asStreamableFile, UseValidation } from '../app.utils';
import { AuthUser, Authenticated, SharedLinkRoute } from '../app.guard';
import { UseValidation, asStreamableFile } from '../app.utils';
import { UUIDParamDto } from './dto/uuid-param.dto';
@ApiTags('Asset')