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

12 lines
208 B
Ruby

module VagrantPlugins
module HyperV
module Cap
module SnapshotList
def self.snapshot_list(machine)
machine.provider.driver.list_snapshots
end
end
end
end
end