feat: Add setter for ORM configuration.

This commit is contained in:
Ari Karim 2025-12-18 14:08:01 +03:00
parent ac06deb86a
commit 7ec227174b
No known key found for this signature in database
GPG Key ID: 1A5559E2E32F1805

View File

@ -23,5 +23,9 @@ module RabbitCarrots
def orm
@orm ||= :activerecord
end
def orm=(value)
@orm = value
end
end
end