mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 01:11:30 +02:00
The segment routing application structure has been refactored to the following structure : sr ---- app ---- web web folder contains the rest cli implementations while app folder contains everything else. Originally I tried to split the application in api / app / web, where api would contain all the interfaces. However, that was not possible due to the fact that most of the classes do not implement any interfaces and app -- api would result in circular dependencies and we would not be able to build them. Change-Id: Ifaaeefe2c5061c8457924ccd01678fb18966c44f
14 lines
393 B
Python
14 lines
393 B
Python
BUNDLES = [
|
|
'//apps/segmentrouting/app:onos-apps-segmentrouting-app',
|
|
'//apps/segmentrouting/web:onos-apps-segmentrouting-web',
|
|
]
|
|
|
|
onos_app (
|
|
title = 'Segment Routing',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
included_bundles = BUNDLES,
|
|
description = 'Segment routing application.',
|
|
required_apps = [ 'org.onosproject.route-service' ],
|
|
)
|