feat(CC-063): add ProjectsModule
This commit is contained in:
parent
9f40a1b9b8
commit
0488e0f426
1 changed files with 5 additions and 0 deletions
5
src/projects/projects.module.ts
Normal file
5
src/projects/projects.module.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { ProjectsController } from './projects.controller';
|
||||
|
||||
@Module({ controllers: [ProjectsController] })
|
||||
export class ProjectsModule {}
|
||||
Loading…
Reference in a new issue