munyal-client/munyal/__main__.py

13 lines
177 B
Python
Raw Permalink Normal View History

2020-12-19 23:08:37 +00:00
import sys
from munyal.client import MunyalClient
try:
client = MunyalClient()
client.start()
sys.exit(0)
except BaseException as e:
print(e)
sys.exit(1)