16 lines
217 B
JavaScript
Executable File
16 lines
217 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import { main } from '../dist/taler-wallet-cli.js';
|
|
|
|
async function run() {
|
|
try {
|
|
(await import('source-map-support')).install();
|
|
} catch (e) {
|
|
// Do nothing.
|
|
}
|
|
main();
|
|
}
|
|
|
|
run();
|
|
|