HWI/hwi.py
Andrew Chow 2ddd4ed41a Refactor to make hwilib more like a library
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.
2019-01-19 16:58:31 -05:00

8 lines
99 B
Python
Executable File

#! /usr/bin/env python3
# Hardware wallet interaction script
from hwilib.cli import main
main()