Nuitka ready

master
kirbylife 2020-12-19 17:08:37 -06:00
parent d44d4380a0
commit 299ce42749
2 changed files with 15 additions and 0 deletions

3
.gitignore vendored
View File

@ -74,3 +74,6 @@ logs
# Poetry
poetry.lock
# Nuitka
*.build/

12
munyal/__main__.py 100644
View File

@ -0,0 +1,12 @@
import sys
from munyal.client import MunyalClient
try:
client = MunyalClient()
client.start()
sys.exit(0)
except BaseException as e:
print(e)
sys.exit(1)