Browse Source

新增 Telegram Bot 配置项,添加 BOT_TOKEN 字段以支持 Bot 服务的配置。

wuyi 3 months ago
parent
commit
f623e174c0
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/types/fastify.d.ts

+ 3 - 0
src/types/fastify.d.ts

@@ -22,6 +22,9 @@ declare module 'fastify' {
       OSS_BUCKET: string
       OSS_REGION: string
       OSS_ENDPOINT: string
+      
+      // Telegram Bot配置
+      BOT_TOKEN: string
     }
     dataSource: DataSource
   }