class LHC::Formats::JSON

def to_body(input)

def to_body(input)
  if input.is_a?(String)
    input
  else
    input.to_json
  end
end