Files
encoach_backend/app/services/abc/__init__.py
Carlos Mesquita 3cf9fa5cba Async release
2024-07-23 08:40:35 +01:00

20 lines
501 B
Python

from .level import ILevelService
from .listening import IListeningService
from .writing import IWritingService
from .speaking import ISpeakingService
from .reading import IReadingService
from .grade import IGradeService
from .training import ITrainingService
from .third_parties import *
__all__ = [
"ILevelService",
"IListeningService",
"IWritingService",
"ISpeakingService",
"IReadingService",
"IGradeService",
"ITrainingService"
]
__all__.extend(third_parties.__all__)