mirror of
https://github.com/hcengineering/platform.git
synced 2025-06-07 00:09:34 +00:00
19 lines
355 B
TypeScript
19 lines
355 B
TypeScript
import { Metadata, plugin, Plugin } from '@hcengineering/platform'
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export const toolId = 'server-client' as Plugin
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
const serverClientPlugin = plugin(toolId, {
|
|
metadata: {
|
|
Endpoint: '' as Metadata<string>, // Account URL endpoint
|
|
UserAgent: '' as Metadata<string>
|
|
}
|
|
})
|
|
|
|
export default serverClientPlugin
|