mirror of
https://github.com/nasa/openmct.git
synced 2024-12-26 16:21:06 +00:00
c45bf45475
...from UTCTimeSystem, and rename to UTCTimeFormat. Per code review feedback from nasa/openmctweb#182.
26 lines
722 B
JSON
26 lines
722 B
JSON
{
|
|
"name": "Time services bundle",
|
|
"description": "Defines interfaces and provides default implementations for handling different time systems.",
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"provides": "timeService",
|
|
"type": "aggregator",
|
|
"implementation": "TimeAggregator.js"
|
|
},
|
|
{
|
|
"provides": "timeService",
|
|
"type": "provider",
|
|
"implementation": "UTCTimeProvider.js",
|
|
"depends": [ "now" ]
|
|
}
|
|
],
|
|
"formats": [
|
|
{
|
|
"key": "utc",
|
|
"implementation": "UTCTimeFormat.js"
|
|
}
|
|
]
|
|
}
|
|
}
|