Urara-Blog/node_modules/.pnpm-store/v3/files/9b/62ed75f68d27862a1549bc80d5212a6dca776770543cdaa86a40fc62db4efc2901eaf9e2011bfee7b3cff8559076e80c13eeb9324405deb20b2a7b520d5a64
2022-08-14 01:14:53 +08:00

10 lines
No EOL
236 B
Text

import CAC from "./CAC.ts";
import Command from "./Command.ts";
/**
* @param name The program name to display in help and version message
*/
const cac = (name = '') => new CAC(name);
export default cac;
export { cac, CAC, Command };