Terarea  2
The automation project
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1"""
2The file to export every endpoints class
3"""
4
5from .bonus import Bonus
6from .services import Services
7from .user_endpoints import UserEndpoints
8from .mandatory import Mandatory
9from .applets import Applets
10
11__all__ = [
12 "Bonus",
13 "Services",
14 "Mandatory",
15 "UserEndpoints",
16 "Applets"
17]