14 lines
218 B
Ruby
14 lines
218 B
Ruby
module Main
|
|
module Actions
|
|
module Podcasts
|
|
class Index < Action
|
|
include Deps["views.podcasts.index"]
|
|
|
|
def handle(req, res)
|
|
res.render index
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|