9 lines
189 B
JavaScript
Executable File
9 lines
189 B
JavaScript
Executable File
#!/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();
|