class Syntropy::RPCAPI

def call(req)

def call(req)
  response, status = __invoke__(req)
  req.respond(
    response.to_json,
    ':status'       => status,
    'Content-Type'  => 'application/json'
  )
end