index.ts 236 B

12345678910
  1. import CAC from "./CAC.ts";
  2. import Command from "./Command.ts";
  3. /**
  4. * @param name The program name to display in help and version message
  5. */
  6. const cac = (name = '') => new CAC(name);
  7. export default cac;
  8. export { cac, CAC, Command };