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