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
58 changed files with 72 additions and 71 deletions

View File

@@ -1,10 +1,10 @@
import {
AuthUserDto,
UserCountDto as CountDto,
CreateUserDto as CreateDto,
CreateProfileImageDto,
CreateProfileImageResponseDto,
CreateUserDto as CreateDto,
UpdateUserDto as UpdateDto,
UserCountDto as CountDto,
UserCountResponseDto,
UserResponseDto,
UserService,
@@ -26,7 +26,7 @@ import {
} from '@nestjs/common';
import { ApiBody, ApiConsumes, ApiTags } from '@nestjs/swagger';
import { Response as Res } from 'express';
import { AdminRoute, Authenticated, AuthUser, PublicRoute } from '../app.guard';
import { AdminRoute, AuthUser, Authenticated, PublicRoute } from '../app.guard';
import { FileUploadInterceptor, Route } from '../app.interceptor';
import { UseValidation } from '../app.utils';
import { UUIDParamDto } from './dto/uuid-param.dto';