summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/images/__init__.py
blob: 106c59f3cec331abc63d223fcfb40f9c644d61c6 (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_image(platform, config):
    """Get image from platform object using os_name."""
    return platform.get_image(config)

# vi: ts=4 expandtab