Files
by/config/app.rb
2026-03-03 22:38:05 +05:00

14 lines
185 B
Ruby

# frozen_string_literal: true
require "hanami"
module ClashDeckGenerator2
class App < Hanami::App
def provider
config.provider_sources = [
:db
]
end
end
end