Example #1
0
def rest_bmc_hdl():
    return rest_bmc.get_bmc()
Example #2
0
def rest_bmc_hdl():
    return rest_bmc.get_bmc()
Example #3
0
 def helper_rest_bmc_hdl(self, request):
     result = rest_bmc.get_bmc()
     return web.json_response(result, dumps=dumps_bytestr)
Example #4
0
 async def rest_bmc_hdl(self, request):
     return web.json_response(rest_bmc.get_bmc())