12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
import { Help } from '@oclif/core';
|
|
|
|
// oclif expects a default export
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default class CustomHelp extends Help {
|
|
async showRootHelp() {
|
|
console.log(
|
|
'You can find up to date information about the CLI here:\nhttps://docs.n8n.io/hosting/cli-commands/',
|
|
);
|
|
}
|
|
}
|