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