feat: Implement Telegram Bot and AI Settings

This commit is contained in:
renato97
2026-01-28 23:15:44 -03:00
parent 4ba5841839
commit f369bb70fe
115 changed files with 26873 additions and 26 deletions

View File

@@ -85,3 +85,19 @@ export interface AppState {
currentMonth: number
currentYear: number
}
export interface AIServiceConfig {
id: string
name: string
endpoint: string
token: string
model?: string
}
export interface AppSettings {
telegram: {
botToken: string
chatId: string
}
aiProviders: AIServiceConfig[]
}