mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 09:51:38 +02:00
16 lines
384 B
Python
16 lines
384 B
Python
BUNDLES = [
|
|
'//protocols/gnmi/stub:onos-protocols-gnmi-stub',
|
|
]
|
|
|
|
onos_app(
|
|
app_name = 'org.onosproject.protocols.gnmi',
|
|
title = 'gNMI Protocol Subsystem',
|
|
category = 'Protocol',
|
|
url = 'http://onosproject.org',
|
|
description = 'ONOS gNMI protocol subsystem',
|
|
included_bundles = BUNDLES,
|
|
required_apps = [
|
|
'org.onosproject.protocols.grpc'
|
|
],
|
|
)
|