NomadNet/nomadnet/__init__.py

12 lines
262 B
Python
Raw Normal View History

2021-03-27 05:58:13 -04:00
import os
import glob
2021-04-08 14:57:31 -04:00
from .NomadNetworkApp import NomadNetworkApp
from .ui import *
2021-03-27 05:58:13 -04:00
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
2021-04-08 14:57:31 -04:00
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
def panic():
os._exit(255)