10 lines
318 B
JavaScript
10 lines
318 B
JavaScript
import { config } from "./config.js";
|
|
import { createApp } from "./app.js";
|
|
import { ensureStorageLayout } from "./services/storage.js";
|
|
|
|
await ensureStorageLayout();
|
|
|
|
const app = createApp();
|
|
app.listen(config.port, () => {
|
|
console.log(`[web] Gameservers control listening on http://localhost:${config.port}`);
|
|
});
|