- Improvements to EntitlementsDomain & Services - Prechecks in Document domain - Add audit information to LicenseUsage
12 lines
454 B
Python
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()
|