13 lines
190 B
Ruby
13 lines
190 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
module Actions
|
|
module Books
|
|
class Index < Admin::Action
|
|
def handle(request, response)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|