utxo-prague/utils/exec.js

13 řádky
247 B
JavaScript
Surový Trvalý odkaz Normální zobrazení Historie

2022-01-28 17:07:43 +01:00
import { UTXOEngine } from "./engine.js";
const utxo = new UTXOEngine();
await utxo.init();
let cmd = Deno.args[0] || "build";
let args = Deno.args.slice(1) || [];
2022-01-28 17:09:53 +01:00
const output = await utxo[cmd](...args);
if (output) {
console.log(output);
}