pferd/PFERD/__init__.py

15 lines
215 B
Python
Raw Normal View History

from .ffm import *
2018-11-26 14:39:06 +01:00
from .ilias import *
2018-11-29 10:28:44 +01:00
from .norbert import *
from .utils import *
__all__ = (
ffm.__all__ +
2018-11-26 14:39:06 +01:00
ilias.__all__ +
2018-11-29 10:28:44 +01:00
norbert.__all__ +
utils.__all__ +
[]
)
LOG_FORMAT = "[%(levelname)s] %(message)s"