mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-07-23 23:30:58 -04:00
User interface skeleton
This commit is contained in:
parent
9fdcbf11b8
commit
fbc151060e
8 changed files with 136 additions and 15 deletions
|
@ -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)
|
Loading…
Add table
Add a link
Reference in a new issue