feat(CC-063): add ContactsModule
This commit is contained in:
parent
752f3c0326
commit
867125c60a
1 changed files with 5 additions and 0 deletions
5
src/contacts/contacts.module.ts
Normal file
5
src/contacts/contacts.module.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { ContactsController } from './contacts.controller';
|
||||
|
||||
@Module({ controllers: [ContactsController] })
|
||||
export class ContactsModule {}
|
||||
Loading…
Reference in a new issue