mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
21 lines
614 B
JSON
21 lines
614 B
JSON
|
{
|
||
|
"name": "Policy Service",
|
||
|
"description": "Provides support for extension-driven decisions.",
|
||
|
"sources": "src",
|
||
|
"extensions": {
|
||
|
"components": [
|
||
|
{
|
||
|
"type": "decorator",
|
||
|
"provides": "actionService",
|
||
|
"implementation": "PolicyActionDecorator.js",
|
||
|
"depends": [ "policyService" ]
|
||
|
},
|
||
|
{
|
||
|
"type": "provider",
|
||
|
"provides": "policyService",
|
||
|
"implementation": "PolicyProvider.js",
|
||
|
"depends": [ "policies[]" ]
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|