fix: NpcModule import AuthModule — resolve UserRepository dependency
Some checks failed
CI/CD — Build & Deploy / Build & Deploy (push) Failing after 59s
Some checks failed
CI/CD — Build & Deploy / Build & Deploy (push) Failing after 59s
This commit is contained in:
@@ -4,9 +4,10 @@ import { Npc } from './npc.entity';
|
|||||||
import { NpcController } from './npc.controller';
|
import { NpcController } from './npc.controller';
|
||||||
import { NpcService } from './npc.service';
|
import { NpcService } from './npc.service';
|
||||||
import { PlayerQuestArc } from '../quest/player-quest-arc.entity';
|
import { PlayerQuestArc } from '../quest/player-quest-arc.entity';
|
||||||
|
import { AuthModule } from '../auth/auth.module';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [TypeOrmModule.forFeature([Npc, PlayerQuestArc])],
|
imports: [TypeOrmModule.forFeature([Npc, PlayerQuestArc]), AuthModule],
|
||||||
controllers: [NpcController],
|
controllers: [NpcController],
|
||||||
providers: [NpcService],
|
providers: [NpcService],
|
||||||
exports: [NpcService],
|
exports: [NpcService],
|
||||||
|
|||||||
Reference in New Issue
Block a user