blob: 5899d8f7a3641f9f4ae541eea6c560b68d4e539c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Copyright (C) 2015 Canonical Ltd.
# Copyright (C) 2015 VMware Inc.
#
# Author: Sankar Tanguturi <stanguturi@vmware.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
from .config_source import ConfigSource
class ConfigNamespace(ConfigSource):
"""Specifies the Config Namespace."""
# vi: ts=4 expandtab
|