This repository has been archived on 2026-03-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cau-praktikum/app/static/js/play.js
T

10 lines
147 B
JavaScript

import { PlayApp } from "./play/app.js";
function main() {
const app = new PlayApp();
window.playApp = app;
app.installSocket();
}
main();