Skip to content
Snippets Groups Projects
Commit d640fafc authored by L4168's avatar L4168
Browse files

imported FactionEntity

parent a387343e
No related branches found
No related tags found
Loading
This commit is part of merge request !25. Comments created here will be created in the context of that merge request.
......@@ -4,9 +4,10 @@ import { TypeOrmModule } from '@nestjs/typeorm';
import { TaskService } from './task.service';
import { TaskController } from './task.controller';
import { TaskEntity } from './task.entity';
import { FactionEntity } from 'src/game/faction.entity';
@Module({
imports: [TypeOrmModule.forFeature([TaskEntity])],
imports: [TypeOrmModule.forFeature([TaskEntity, FactionEntity])],
controllers: [TaskController],
providers: [TaskService],
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment