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