pferd/PFERD/__init__.py

10 lines
157 B
Python
Raw Normal View History

from .authenticator import *
2018-11-23 09:56:59 +01:00
from .organizer import *
__all__ = (
2018-11-23 09:56:59 +01:00
authenticator.__all__ +
organizer.__all__
)
LOG_FORMAT = "[%(levelname)s] %(message)s"