blob: 85bea99f482b1af46287857a9e7f7a7b606e2f2d (
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_instance(snapshot, *args, **kwargs):
"""
get instance from snapshot
"""
return snapshot.launch(*args, **kwargs)
# vi: ts=4 expandtab
|