ConfigMan/lib/configman/modules/api.rb

16 lines
291 B
Ruby
Raw Normal View History

2023-10-13 21:16:43 -06:00
# frozen_string_literal: true
module ConfigMan
module Modules
module Api
2023-10-13 21:16:43 -06:00
def self.populate_defaults
{
'api_endpoint' => 'https://api.example.com',
'api_key' => 'your_api_key_here',
'rate_limit' => 1000
}
end
end
end
end