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

16 lines
289 B
Ruby

# frozen_string_literal: true
module ConfigMan
module Modules
module FileStorage
def self.populate_defaults
{
'storage_type' => 'local',
'cloud_provider' => 'none',
'local_path' => '/path/to/storage'
}
end
end
end
end