mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
16 lines
496 B
TypeScript
16 lines
496 B
TypeScript
import type { IExecuteFunctions, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import { description } from './actions/node.description';
|
|
import { router } from './actions/router';
|
|
import { loadOptions, listSearch, resourceMapping } from './methods';
|
|
|
|
export class TheHiveProject implements INodeType {
|
|
description: INodeTypeDescription = description;
|
|
|
|
methods = { loadOptions, listSearch, resourceMapping };
|
|
|
|
async execute(this: IExecuteFunctions) {
|
|
return router.call(this);
|
|
}
|
|
}
|