ConfigMan/lib/configman/modules/cache.rb

16 lines
256 B
Ruby
Raw Normal View History

2023-10-13 21:16:43 -06:00
# 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