mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
13 lines
237 B
Ruby
13 lines
237 B
Ruby
require 'fog/core'
|
|
|
|
module Fog
|
|
module Bluebox
|
|
|
|
extend Fog::Provider
|
|
|
|
service(:blb, 'bluebox/blb', 'BLB')
|
|
service(:compute, 'bluebox/compute', 'Compute')
|
|
service(:dns, 'bluebox/dns', 'DNS')
|
|
|
|
end
|
|
end
|