File size: 415 Bytes
9d2d895 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /**
* 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);
|