ConfigMan/lib/configman/modules/cache.rb
2023-10-13 21:16:43 -06:00

16 lines
256 B
Ruby

# frozen_string_literal: true
module ConfigMan
module Modules
module Cache
def self.populate_defaults
{
'cache_type' => 'Redis',
'host' => 'localhost',
'port' => 6379
}
end
end
end
end