13 lines
231 B
Ruby
13 lines
231 B
Ruby
# auto_register: false
|
|
# frozen_string_literal: true
|
|
|
|
require "hanami/view"
|
|
|
|
module Main
|
|
class View < Hanami::View
|
|
config.layouts_dir = "layouts"
|
|
config.layout = "app"
|
|
config.paths = "slices/main/templates"
|
|
end
|
|
end
|