astro-ghostcms/.pnpm-store/v3/files/9b/62ed75f68d27862a1549bc80d52...

10 lines
236 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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 };