🔧 CLI Restructuring:
• Rename cli/simple_wallet.py to cli/aitbc_cli.py for better naming consistency
• Update aitbc-cli launcher to call aitbc_cli.py instead of simple_wallet.py
• Maintain all existing wallet functionality and command structure
• Preserve compatibility with /opt/aitbc/cli installation path
4 lines
92 B
Bash
Executable File
4 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
source /opt/aitbc/cli/venv/bin/activate
|
|
python /opt/aitbc/cli/aitbc_cli.py "$@"
|