module Cardflex module Xml def self.parse(xml) Parser.xml_to_hash(xml) end def self.hash_to_xml(hash) Serializer.hash_to_xml(hash) end end end