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