14 lines
320 B
Python
14 lines
320 B
Python
from .third_parties import *
|
|
from .exam import *
|
|
from .training import *
|
|
from .user import IUserService
|
|
from .evaluation import IEvaluationService
|
|
|
|
__all__ = [
|
|
"IUserService",
|
|
"IEvaluationService"
|
|
]
|
|
__all__.extend(third_parties.__all__)
|
|
__all__.extend(exam.__all__)
|
|
__all__.extend(training.__all__)
|