vagrant/plugins/providers/hyperv/cap/snapshot_list.rb

12 lines
208 B
Ruby
Raw Normal View History

2016-03-05 16:41:18 +00:00
module VagrantPlugins
module HyperV
module Cap
module SnapshotList
def self.snapshot_list(machine)
machine.provider.driver.list_snapshots
end
end
end
end
end