2021-07-07 07:39:10 -04:00
|
|
|
module.exports = [
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'web',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'real-time',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'document-updater',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'clsi',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'filestore',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'docstore',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'chat',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'spelling',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'contacts',
|
2021-07-07 07:39:10 -04:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'notifications',
|
2023-01-18 10:03:32 -05:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
name: 'project-history',
|
2023-01-18 10:03:32 -05:00
|
|
|
},
|
|
|
|
{
|
2024-03-25 06:51:40 -04:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|