NestJS - Database with TypeORM
Given this NestJS module code, what will happen?
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { User } from './user.entity';
@Module({
imports: [TypeOrmModule.forFeature([User])],
})
export class UserModule {}