lib/lutaml/model/toml/document.rb



# frozen_string_literal: true

module Lutaml
  module Model
    module Toml
      # Base class for TOML documents
      class Document < Lutaml::Model::KeyValueDocument
      end
    end
  end
end