We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d79d01e commit 48e5b94Copy full SHA for 48e5b94
server/src/server.ts
@@ -1,6 +1,7 @@
1
import { App } from '@/app'
2
import { ValidateEnv } from '@/utils/validate-env'
3
import { AuthRoute } from '@routes/auth.route'
4
+import { BotMailRoute } from './routes/bot-mail.route'
5
import { ChannelRoute } from './routes/channels.route'
6
import { ConversationLiveChatRoute } from './routes/conversation-live-chat.route'
7
import { ConversationRoute } from './routes/conversation.route'
@@ -24,6 +25,7 @@ const app = new App([
24
25
new FlowRoute(),
26
new IntentRoute(),
27
new ConversationLiveChatRoute(),
28
+ new BotMailRoute(),
29
])
30
31
app.listen()
0 commit comments