blob: 2ab654de9a00e6f25a86df5fe0dd0e4bfceb0686 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# This file is part of cloud-init. See LICENSE file for license information.
def get_snapshot(image):
"""
get snapshot from image
"""
return image.snapshot()
# vi: ts=4 expandtab
|