8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
|
|
import { startWithout } from "@digiresilience/montar";
|
||
|
|
import "./index.js";
|
||
|
|
|
||
|
|
async function runServer(): Promise<void> {
|
||
|
|
await startWithout(["worker"]);
|
||
|
|
}
|
||
|
|
|
||
|
|
runServer();
|