UNPKG

yargs-file-commands

Version:

A yargs helper function that lets you define your commands structure via directory and file naming conventions.

10 lines (7 loc) 197 B
export const describe = 'Database health check'; export const builder = (yargs: any) => { return yargs; }; export const handler = async () => { console.log('Health check handler called'); };