Files
adamantium/slices/main/actions/photos/index.rb

14 lines
214 B
Ruby

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