link-stack/apps/metamigo-api/src/main.ts

9 lines
171 B
TypeScript
Raw Normal View History

import { startWithout } from "@digiresilience/montar";
import "./index.js";
async function runServer(): Promise<void> {
await startWithout(["worker"]);
}
2023-06-07 11:18:58 +00:00
runServer();