module Lutaml::Toml

def self.const_missing(name)

Allows Lutaml::Toml::Mapping to resolve to Lutaml::Toml::Adapter::Mapping
Convenience aliases for common classes at the module level
def self.const_missing(name)
  if Adapter.const_defined?(name, false)
    Adapter.const_get(name, false)
  else
    super
  end
end