Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
# frozen_string_literal: true
require_relative '../puppet/indirector'
# A class for managing data lookups
class Puppet::DataBinding
# Set up indirection, so that data can be looked for in the compiler
extend Puppet::Indirector
indirects(:data_binding, :terminus_setting => :data_binding_terminus,
:doc => "Where to find external data bindings.")
class LookupError < Puppet::PreformattedError; end
class RecursiveLookupError < Puppet::DataBinding::LookupError; end
end