1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

This shouldn't be here.

This commit is contained in:
Sean Handley 2012-06-22 10:33:16 +01:00
parent 8fcee51407
commit 73b74ba964

View file

@ -1,34 +0,0 @@
require 'fog/core/model'
module Fog
module Compute
class Serverlove
class Drive < Fog::Model
identity :drive
attribute :name
attribute :user
attribute :size
attribute :claimed
attribute :status
attribute :encryption_cipher, :aliases => 'encryption:cipher'
def save
end
def destroy
requires :identity
connection.destroy_drive(identity)
self
end
def self.create(args)
end
end
end
end
end