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/db/relation.rb Normal file
View File

@@ -0,0 +1,10 @@
# frozen_string_literal: true
require "hanami/db/relation"
module ClashDeckGenerator2
module DB
class Relation < Hanami::DB::Relation
end
end
end

10
app/db/repo.rb Normal file
View File

@@ -0,0 +1,10 @@
# frozen_string_literal: true
require "hanami/db/repo"
module ClashDeckGenerator2
module DB
class Repo < Hanami::DB::Repo
end
end
end

10
app/db/struct.rb Normal file
View File

@@ -0,0 +1,10 @@
# frozen_string_literal: true
require "hanami/db/struct"
module ClashDeckGenerator2
module DB
class Struct < Hanami::DB::Struct
end
end
end