mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
import { Help } from '@oclif/core';
|
|
import Container from 'typedi';
|
|
import { Logger } from 'winston';
|
|
|
|
// 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/',
|
|
);
|
|
}
|
|
}
|