mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-16 13:01:17 +02:00
8 lines
No EOL
289 B
Python
8 lines
No EOL
289 B
Python
from __future__ import absolute_import, print_function
|
|
|
|
from jmclient import load_program_config, wallet_tool_main
|
|
|
|
if __name__ == "__main__":
|
|
load_program_config()
|
|
#JMCS follows same convention as JM original; wallet is in "wallets" localdir
|
|
print(wallet_tool_main("wallets")) |