Files
adamantium/slices/admin/actions/index.rb
2023-05-06 17:11:54 +10:00

12 lines
168 B
Ruby

module Admin
module Actions
class Index < Action
include Deps["views.index"]
def handle(req, res)
res.render index
end
end
end
end