Files
eveAI/eveai_client/platform/extensions.py
Josako 5c982fcc2c - Added EveAI Client to project
- Improvements to EntitlementsDomain & Services
- Prechecks in Document domain
- Add audit information to LicenseUsage
2025-05-17 15:56:14 +02:00

12 lines
454 B
Python

from eveai_client.platform.auth.auth_manager import AuthManager
from eveai_client.platform.cache.cache_manager import CacheManager
from eveai_client.platform.config.config_manager import ConfigManager
from eveai_client.platform.api.api_client import ApiClient
from eveai_client.platform.ui.ui_manager import UIManager
auth_manager = AuthManager()
cache_manager = CacheManager()
config_manager = ConfigManager()
api_client = ApiClient()
ui = UIManager()