Moves the command argument parsing to hwi.py. Instead of each function taking args and client, they now take client and whatever else they need. hwi.py handles the conversion from args and client to the actual arguments.
8 lines
99 B
Python
Executable File
8 lines
99 B
Python
Executable File
#! /usr/bin/env python3
|
|
|
|
# Hardware wallet interaction script
|
|
|
|
from hwilib.cli import main
|
|
|
|
main()
|