UNPKG

yargs-file-commands

Version:

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

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