2021-07-07 07:39:10 -04:00
|
|
|
module.exports = [
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'web'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'real-time'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'document-updater'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'clsi'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'filestore'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'docstore'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'chat'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'spelling'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'contacts'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2023-01-18 10:03:32 -05:00
|
|
|
name: 'notifications'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'project-history'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'history-v1'
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
]
|
2021-07-07 08:04:19 -04:00
|
|
|
|
|
|
|
if (require.main === module) {
|
|
|
|
for (const service of module.exports) {
|
|
|
|
console.log(service.name)
|
|
|
|
}
|
|
|
|
}
|