mirror of
https://github.com/clearml/clearml
synced 2025-01-31 17:17:00 +00:00
20 lines
531 B
Python
20 lines
531 B
Python
from ..api_proxy import ApiServiceProxy
|
|
|
|
|
|
# allow us to replace the api version after we have completed the authentication process,
|
|
# and we know the backend server api version.
|
|
# ApiServiceProxy will dynamically load the correct api object based on the session api_version
|
|
auth = ApiServiceProxy('auth')
|
|
events = ApiServiceProxy('events')
|
|
models = ApiServiceProxy('models')
|
|
projects = ApiServiceProxy('projects')
|
|
tasks = ApiServiceProxy('tasks')
|
|
|
|
__all__ = [
|
|
'auth',
|
|
'events',
|
|
'models',
|
|
'projects',
|
|
'tasks',
|
|
]
|