StreamAI / scripts /app.js
privateuserh's picture
Update scripts/app.js
1b7842a verified
raw
history blame
217 Bytes
import { initUI } from './ui.js';
import { initChat } from './chat.js';
import { initVideo } from './video.js';
document.addEventListener('DOMContentLoaded', () => {
initUI();
initChat();
initVideo();
});