refactor imports/exports

This commit is contained in:
andres
2023-07-16 16:21:55 +02:00
parent 2f1579ed48
commit 4a9bf1e858
26 changed files with 50 additions and 40 deletions

View File

@@ -1,7 +1,6 @@
import { Length } from 'class-validator'
import { PaginationDto } from '../../../infrastructure/common/pagination/pagination.dto'
import { IsOptionalOrEmptyString } from '../../../infrastructure/decorators/is-optional-or-empty-string'
import { IsOrderBy } from '../../../infrastructure/decorators/is-order-by-constraint'
import { IsOptionalOrEmptyString, IsOrderBy } from '../../../infrastructure/decorators'
export class GetAllCardsInDeckDto extends PaginationDto {
@IsOptionalOrEmptyString()

View File

@@ -0,0 +1,3 @@
export * from './create-card.dto'
export * from './get-all-cards.dto'
export * from './update-card.dto'