mirror of
https://github.com/nasa/openmct.git
synced 2024-12-29 09:28:52 +00:00
f8a0544435
Add specs for scripts in bundle platform/telemetry, for WTD-575.
28 lines
841 B
JSON
28 lines
841 B
JSON
{
|
|
"name": "Data bundle",
|
|
"description": "Interfaces and infrastructure for real-time and historical data.",
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"provides": "telemetryService",
|
|
"type": "aggregator",
|
|
"implementation": "TelemetryAggregator.js",
|
|
"depends": [ "$q" ]
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "TelemetryController",
|
|
"implementation": "TelemetryController.js",
|
|
"depends": [ "$scope", "$q", "$timeout", "$log" ]
|
|
}
|
|
],
|
|
"capabilities": [
|
|
{
|
|
"key": "telemetry",
|
|
"implementation": "TelemetryCapability.js",
|
|
"depends": [ "$injector", "$q", "$log" ]
|
|
}
|
|
]
|
|
}
|
|
} |