Template
feat : working on word submission
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { Word } from './entities/word.entity';
|
||||
import { WordController } from './controllers/word.controller';
|
||||
import { WordService } from './services/word.service';
|
||||
import { UsersModule } from 'src/users/users.module';
|
||||
|
||||
@Module({
|
||||
imports: [UsersModule, TypeOrmModule.forFeature([Word])],
|
||||
controllers: [WordController],
|
||||
providers: [WordService],
|
||||
})
|
||||
export class WordModule {}
|
||||
Reference in New Issue
Block a user