Initial commit

This commit is contained in:
tofu
2026-03-02 23:49:35 +05:00
commit 72b94fc682
42 changed files with 793 additions and 0 deletions

12
app/action.rb Normal file
View File

@@ -0,0 +1,12 @@
# auto_register: false
# frozen_string_literal: true
require "hanami/action"
require "dry/monads"
module ClashDeckGenerator
class Action < Hanami::Action
# Provide `Success` and `Failure` for pattern matching on operation results
include Dry::Monads[:result]
end
end