12 lines
209 B
Ruby
12 lines
209 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ClashDeckGenerator2
|
|
module Actions
|
|
module Home
|
|
class Index < ClashDeckGenerator2::Action
|
|
def handle(_req, _res)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |