Trần Viết Sơn
fix: refactor, add entities
c114c72
raw
history blame
247 Bytes
import { Module } from '@nestjs/common';
import { UserService } from './user.service.js';
import { UserController } from './user.controller.js';
@Module({
controllers: [UserController],
providers: [UserService],
})
export class UserModule {}