Orange-OpenSource/python-onapsdk

View on GitHub
src/onapsdk/cps/cps_element.py

Summary

Maintainability
A
0 mins
Test Coverage
# SPDX-License-Identifier: Apache-2.0
"""ONAP SDK CPS element module."""

from onapsdk.configuration import settings
from onapsdk.onap_service import OnapService


class CpsElement(OnapService):
    """Mother Class of all CPS elements."""

    _url: str = settings.CPS_URL
    auth: tuple = settings.CPS_AUTH