Files
2026-03-03 23:49:13 +01:00

9 lines
235 B
TypeScript

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 };