13 lines
217 B
Ruby
13 lines
217 B
Ruby
module Adamantium
|
|
module Actions
|
|
module Posts
|
|
class Index < Action
|
|
include Deps["views.posts.index"]
|
|
def handle(req, res)
|
|
res.render index
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|