2019-07-06 19:56:17 +00:00
|
|
|
from ..api_proxy import ApiServiceProxy
|
2019-06-10 17:00:28 +00:00
|
|
|
|
|
|
|
|
2019-07-06 19:56:17 +00:00
|
|
|
# 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')
|
2019-10-25 12:13:41 +00:00
|
|
|
workers = ApiServiceProxy('workers')
|
|
|
|
queues = ApiServiceProxy('queues')
|
2019-07-06 19:56:17 +00:00
|
|
|
|
2019-06-10 17:00:28 +00:00
|
|
|
__all__ = [
|
|
|
|
'auth',
|
|
|
|
'events',
|
|
|
|
'models',
|
|
|
|
'projects',
|
|
|
|
'tasks',
|
2019-10-25 12:13:41 +00:00
|
|
|
'workers',
|
|
|
|
'queues',
|
2019-06-10 17:00:28 +00:00
|
|
|
]
|