# frozen_string_literal: true module LB module Project # Base view class View < Dry::View::Controller extend LB::Project::Registry::Registration[:view] def self.setup(view, layout = 'main') view.setting :paths, [LB::Project.template_path] view.setting :layout, layout end def with(_options) self end end end end