2018-03-27 21:04:40 +00:00
|
|
|
def get_subsystems(client):
|
2018-03-27 21:31:52 +00:00
|
|
|
return client.call('get_subsystems')
|
2018-02-26 19:16:59 +00:00
|
|
|
|
|
|
|
|
2018-03-27 21:04:40 +00:00
|
|
|
def get_subsystem_config(client, name):
|
|
|
|
params = {'name': name}
|
2018-03-27 21:31:52 +00:00
|
|
|
return client.call('get_subsystem_config', params)
|