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

9
app/repos/cards_repo.rb Normal file
View File

@@ -0,0 +1,9 @@
module ClashDeckGenerator
module Repos
class CardsRepo < DB::Repo[:cards]
def meta_cards
cards.meta.to_a
end
end
end
end