openmct/platform/time/bundle.json

26 lines
722 B
JSON
Raw Normal View History

{
"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"
}
]
}
}