14 lines
185 B
Ruby
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
|