Add support for TGI website

This commit is contained in:
I-Al-Istannen
2019-10-15 15:34:59 +02:00
parent 52852d11a6
commit 458cc1c6d6
2 changed files with 77 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import logging
from .ffm import *
from .ilias import *
from .norbert import *
from .tgi import *
from .ti import *
from .utils import *
@ -11,6 +12,7 @@ __all__ = ["STYLE", "FORMAT", "DATE_FORMAT", "FORMATTER", "enable_logging"]
__all__ += ffm.__all__
__all__ += ilias.__all__
__all__ += norbert.__all__
__all__ += tgi.__all__
__all__ += ti.__all__
__all__ += utils.__all__