main
 1# frozen_string_literal: true
 2
 3module Saml
 4  module Kit
 5    module Builders
 6      # This class is responsible for rendering an empty xml element
 7      class Null
 8        include XmlTemplatable
 9      end
10    end
11  end
12end