Initial commit

This commit is contained in:
tofu
2026-03-03 21:42:51 +05:00
commit b1c3b657c2
43 changed files with 833 additions and 0 deletions

10
app/views/context.rb Normal file
View File

@@ -0,0 +1,10 @@
# auto_register: false
# frozen_string_literal: true
module ClashDeckGenerator2
module Views
class Context < Hanami::View::Context
# Define your view context here. See https://guides.hanamirb.org/views/context/ for details.
end
end
end

10
app/views/helpers.rb Normal file
View File

@@ -0,0 +1,10 @@
# auto_register: false
# frozen_string_literal: true
module ClashDeckGenerator2
module Views
module Helpers
# Add your view helpers here
end
end
end