openmct/platform/time/bundle.json
Victor Woeltjen c45bf45475 [Time Conductor] Remove non-format-like methods
...from UTCTimeSystem, and rename to UTCTimeFormat. Per code
review feedback from nasa/openmctweb#182.
2015-10-26 09:48:54 -07:00

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