User interface skeleton

This commit is contained in:
Mark Qvist 2021-04-08 20:57:31 +02:00
parent 9fdcbf11b8
commit fbc151060e
8 changed files with 136 additions and 15 deletions

View file

@ -1,5 +1,12 @@
import os
import glob
from .NomadNetworkApp import NomadNetworkApp
from .ui import *
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
def panic():
os._exit(255)