15 lines
277 B
Ruby
15 lines
277 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module HyperV
|
|
module Cap
|
|
module SnapshotList
|
|
def self.snapshot_list(machine)
|
|
machine.provider.driver.list_snapshots
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|