9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
|
#!/usr/bin/env node
|
||
|
|
||
|
// Execute the wallet CLI from the source directory.
|
||
|
// This script is meant for testing and must not
|
||
|
// be installed.
|
||
|
|
||
|
import { main } from '../lib/index.js';
|
||
|
main();
|