From cf0dc171f081d61e7ddf1db63e9d9f8826f11bb7 Mon Sep 17 00:00:00 2001 From: rustdreamer Date: Wed, 2 Aug 2023 18:01:47 +0800 Subject: [PATCH] fix --- src/app.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 9a1b125..9a4606b 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -2,7 +2,7 @@ import { BadRequestException, Body, Controller, Get, Post } from '@nestjs/common import { AppService } from './app.service'; import * as fs from 'fs'; import { ApiProperty } from '@nestjs/swagger'; -import { IsArray, IsBoolean, IsDate, IsDateString, IsNotEmpty, IsString } from 'class-validator'; +import { IsArray, IsBoolean, IsDateString, IsNotEmpty, IsString } from 'class-validator'; import { NodeVisitorEntity } from './node-visitor.entity'; import { DataSource } from 'typeorm'; import * as bluebird from 'bluebird';