pferd/PFERD/__init__.py

13 lines
173 B
Python
Raw Normal View History

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