feat(C3): Webhooks module
This commit is contained in:
parent
efc0d6a0fa
commit
ae987026fa
1 changed files with 12 additions and 0 deletions
12
src/modules/webhooks/webhooks.module.ts
Normal file
12
src/modules/webhooks/webhooks.module.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { WebhooksService } from './webhooks.service';
|
||||
import { WebhooksController } from './webhooks.controller';
|
||||
import { ObservationsModule } from '../observations/observations.module';
|
||||
import { WorkspacesModule } from '../workspaces/workspaces.module';
|
||||
|
||||
@Module({
|
||||
imports: [ObservationsModule, WorkspacesModule],
|
||||
providers: [WebhooksService],
|
||||
controllers: [WebhooksController],
|
||||
})
|
||||
export class WebhooksModule {}
|
||||
Loading…
Reference in a new issue