refactor: generalize channel type handling across various components

This commit is contained in:
Lauren ten Hoor
2026-02-10 09:56:17 +08:00
parent cb0f628772
commit 38ad3fe27f
8 changed files with 36 additions and 37 deletions

View File

@@ -7,7 +7,7 @@
import fs from "node:fs/promises";
import path from "node:path";
export type ChannelType = "telegram" | "whatsapp";
export type ChannelType = string;
export interface BindingAnalysis {
channelEnabled: boolean;