module Lutaml::Model::Xml

def self.detect_xml_adapter

def self.detect_xml_adapter
  return :nokogiri if Object.const_defined?(:Nokogiri)
  return :ox if Object.const_defined?(:Ox)
  return :oga if Object.const_defined?(:Oga)
  nil
end