UNPKG

node-karin

Version:

Lightweight, efficient, concise, and stable robot framework.

10 lines (9 loc) 237 B
// src/start/app.ts var isStart = false; (async () => { if (isStart) return; isStart = true; const index = import.meta.url.includes(".ts") ? "../index.ts" : "../index.mjs"; const { start } = await import(index); start(); })();