mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
12 lines
220 B
Plaintext
12 lines
220 B
Plaintext
import { Config, Env } from '@n8n/config';
|
|
|
|
@Config
|
|
export class MyFeatureConfig {
|
|
/**
|
|
* How often in minutes to run some task.
|
|
* @default 30
|
|
*/
|
|
@Env('N8N_MY_FEATURE_TASK_INTERVAL')
|
|
taskInterval: number = 30;
|
|
}
|