1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/dns/models/dynect/records.rb

28 lines
360 B
Ruby
Raw Normal View History

2011-06-16 17:51:13 -04:00
require 'fog/core/collection'
require 'fog/dns/models/dynect/record'
module Fog
module Dynect
class DNS
class Records < Fog::Collection
attribute :zone
model Fog::Dynect::DNS::Record
def all
end
def get(record_id)
end
def new(attributes = {})
end
end
end
end
end