Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
python3-dmapi / usr / lib / python3.6 / site-packages / dmapi / conf / __init__.py
Size: Mime:
# Copyright 2018 TrilioData Inc.
# All Rights Reserved.

# This package got introduced during the Mitaka cycle in 2018 to
# have a central place where the config options of Nova can be maintained.
# For more background see the blueprint "centralize-config-options"

from oslo_config import cfg

from dmapi.conf import api
from dmapi.conf import base
from dmapi.conf import cache
from dmapi.conf import cells
from dmapi.conf import crypto
from dmapi.conf import compute
from dmapi.conf import database
from dmapi.conf import keystone
from dmapi.conf import paths
from dmapi.conf import service
from dmapi.conf import service_token
from dmapi.conf import wsgi

CONF = cfg.CONF

api.register_opts(CONF)
base.register_opts(CONF)
cache.register_opts(CONF)
crypto.register_opts(CONF)
compute.register_opts(CONF)
database.register_opts(CONF)
paths.register_opts(CONF)
service_token.register_opts(CONF)
service.register_opts(CONF)
wsgi.register_opts(CONF)