Add Hanami DB classes

This commit is contained in:
2024-08-05 18:41:17 +10:00
parent 00b100109f
commit 9b3d2dc4ae
2 changed files with 20 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 Adamantium
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 Adamantium
module DB
class Repo < Hanami::DB::Repo
end
end
end