mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-15 12:55:59 +00:00
20 lines
339 B
TypeScript
20 lines
339 B
TypeScript
import { Metadata, plugin, Plugin } from '@anticrm/platform'
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export const toolId = 'tool' as Plugin
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
const toolPlugin = plugin(toolId, {
|
|
metadata: {
|
|
Endpoint: '' as Metadata<string>,
|
|
Transactor: '' as Metadata<string>,
|
|
Secret: '' as Metadata<string>
|
|
}
|
|
})
|
|
|
|
export default toolPlugin
|