feat(scaffold): add src/items/items.module.ts [skip ci]
This commit is contained in:
9
src/items/items.module.ts
Normal file
9
src/items/items.module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { ItemsController } from './items.controller';
|
||||
import { ItemsService } from './items.service';
|
||||
|
||||
@Module({
|
||||
controllers: [ItemsController],
|
||||
providers: [ItemsService],
|
||||
})
|
||||
export class ItemsModule {}
|
||||
Reference in New Issue
Block a user