c021b106d9
As neutron-dynamic-routing is a Neutron stadium project the api-def and the api-ref should be in neutron-lib. Change-Id: Idccc69f025a0d1ec0453d13a7d81b94e3a15149d Depends-On: https://review.opendev.org/c/openstack/neutron-lib/+/788322
22 lines
824 B
Python
22 lines
824 B
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from neutron_lib.api.definitions import bgp_4byte_asn as api_def
|
|
from neutron_lib.api import extensions as api_extensions
|
|
|
|
|
|
class Bgp_4byte_asn(api_extensions.APIExtensionDescriptor):
|
|
"""Extension class supporting bgp 4-byte AS numbers.
|
|
"""
|
|
|
|
api_definition = api_def
|