platform/server/tool/src/plugin.ts
Andrey Sobolev 5b6ef778f3
Migrate to hcengineering and publish to github packages (#2273)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2022-09-21 14:08:25 +06:00

19 lines
307 B
TypeScript

import { Metadata, plugin, Plugin } from '@hcengineering/platform'
/**
* @public
*/
export const toolId = 'tool' as Plugin
/**
* @public
*/
const toolPlugin = plugin(toolId, {
metadata: {
Endpoint: '' as Metadata<string>,
Transactor: '' as Metadata<string>
}
})
export default toolPlugin