GenerAI / worldmonitor /src /live-channels-main.ts
amogaddy's picture
Integra World Monitor (AGPL-3.0, self-hosted) nello Space: pagina, menu, e arricchimento notizie per la AI (part 7)
9d2d895 verified
Raw
History Blame Contribute Delete
415 Bytes
/**
* Entry point for the standalone channel management window (Tauri desktop).
* Web version uses index.html?live-channels=1 and main.ts instead.
*/
import './styles/main.css';
import { initI18n } from '@/services/i18n';
import { initLiveChannelsWindow } from '@/live-channels-window';
async function main(): Promise<void> {
await initI18n();
initLiveChannelsWindow();
}
void main().catch(console.error);