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 { NpcService } from './npc.service';
|
||||
import { PlayerQuestArc } from '../quest/player-quest-arc.entity';
|
||||
import { AuthModule } from '../auth/auth.module';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Npc, PlayerQuestArc])],
|
||||
imports: [TypeOrmModule.forFeature([Npc, PlayerQuestArc]), AuthModule],
|
||||
controllers: [NpcController],
|
||||
providers: [NpcService],
|
||||
exports: [NpcService],
|
||||
|
||||
Reference in New Issue
Block a user