Files
adamantium/app/actions/blogroll/index.rb
2024-02-11 14:40:46 +11:00

16 lines
245 B
Ruby

require "time_math"
module Adamantium
module Actions
module Blogroll
class Index < Action
include Deps["views.blogroll.index"]
def handle(req, res)
res.render index
end
end
end
end
end