Phase 1 complete
This commit is contained in:
10
apps/backend/src/character/character.module.ts
Normal file
10
apps/backend/src/character/character.module.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { CharacterService } from './character.service';
|
||||
import { CharacterController } from './character.controller';
|
||||
|
||||
@Module({
|
||||
providers: [CharacterService],
|
||||
controllers: [CharacterController],
|
||||
exports: [CharacterService],
|
||||
})
|
||||
export class CharacterModule {}
|
||||
Reference in New Issue
Block a user