summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/instances/__init__.py
blob: fc2e9cbcf694aa7392116a419aa2c7652c665395 (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_instance(snapshot, *args, **kwargs):
    """Get instance from snapshot."""
    return snapshot.launch(*args, **kwargs)

# vi: ts=4 expandtab