8f84e356ad
Added commandline tool cmd.py
11 lines
272 B
Python
11 lines
272 B
Python
import sys
|
|
sys.path = ['../',] + sys.path
|
|
|
|
from bitkeylib.transport_pipe import PipeTransport
|
|
|
|
TRANSPORT = PipeTransport
|
|
TRANSPORT_ARGS = ('../../bitkey-python/pipe', False)
|
|
|
|
DEBUG_TRANSPORT = PipeTransport
|
|
DEBUG_TRANSPORT_ARGS = ('../../bitkey-python/pipe.debug', False)
|