Create empty command (#2963)

* create empty command

* update description

* rebase

---------

Co-authored-by: corentin <corentin@twenty.com>
This commit is contained in:
bosiraphael
2023-12-12 18:22:19 +01:00
committed by GitHub
parent f126bd95d6
commit 6594055317
3 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import { Module } from '@nestjs/common';
import { FetchWorkspaceMessagesCommand } from 'src/workspace/messaging/commands/fetch-workspace-messages.command';
@Module({
imports: [],
providers: [FetchWorkspaceMessagesCommand],
})
export class FetchWorkspaceMessagesCommandsModule {}