formatting
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { IsInt, IsNotEmpty, IsString } from "class-validator";
|
||||
import { IsInt, IsNotEmpty, IsString } from 'class-validator';
|
||||
|
||||
export class NotificationDto {
|
||||
@IsNotEmpty()
|
||||
@@ -12,4 +12,4 @@ export class NotificationDto {
|
||||
@IsNotEmpty()
|
||||
@IsString()
|
||||
phone_number: string;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
import { Module } from "@nestjs/common";
|
||||
import { NotificationController } from "./notification.controller";
|
||||
import { NotificationService } from "./notification.service";
|
||||
import { SocketModule } from "../socket/socket.module";
|
||||
import { Module } from '@nestjs/common';
|
||||
import { NotificationController } from './notification.controller';
|
||||
import { NotificationService } from './notification.service';
|
||||
import { SocketModule } from '../socket/socket.module';
|
||||
|
||||
@Module({
|
||||
imports: [SocketModule],
|
||||
controllers: [NotificationController],
|
||||
providers: [NotificationService],
|
||||
})
|
||||
export class NotificationModule {
|
||||
}
|
||||
export class NotificationModule {}
|
||||
|
||||
Reference in New Issue
Block a user