mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-14 17:07:22 +02:00
39d5e0ff87
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
14 lines
412 B
TypeScript
14 lines
412 B
TypeScript
import { Container } from '@n8n/di';
|
|
import { Help } from '@oclif/core';
|
|
import { Logger } from 'n8n-core';
|
|
|
|
// oclif expects a default export
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default class CustomHelp extends Help {
|
|
async showRootHelp() {
|
|
Container.get(Logger).info(
|
|
'You can find up to date information about the CLI here:\nhttps://docs.n8n.io/hosting/cli-commands/',
|
|
);
|
|
}
|
|
}
|