mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-23 16:56:07 +00:00
19 lines
307 B
TypeScript
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
|