Add TypeORM DB and Resources (#2)
Co-authored-by: Joe Arndt <jmarndt@users.noreply.github.com> Reviewed-on: #2
This commit is contained in:
parent
746adcd2fd
commit
c6434de89d
64 changed files with 2916 additions and 360 deletions
10
src/sub-categories/sub-categories.module.ts
Normal file
10
src/sub-categories/sub-categories.module.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { SubCategoriesService } from './sub-categories.service';
|
||||
import { SubCategoriesController } from './sub-categories.controller';
|
||||
import { SubCategoryDataService } from './sub-category-data.service';
|
||||
|
||||
@Module({
|
||||
controllers: [SubCategoriesController],
|
||||
providers: [SubCategoriesService, SubCategoryDataService]
|
||||
})
|
||||
export class SubCategoriesModule { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue