mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
feat(SearXNG Node): Add SearXNG tool (#13218)
This commit is contained in:
committed by
GitHub
parent
965baae093
commit
0b460552ba
@@ -0,0 +1,19 @@
|
||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export class SearXngApi implements ICredentialType {
|
||||
name = 'searXngApi';
|
||||
|
||||
displayName = 'SearXNG';
|
||||
|
||||
documentationUrl = 'searxng';
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'API URL',
|
||||
name: 'apiUrl',
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user