UNPKG

236 BPlain TextView Raw
1import CAC from "./CAC.ts";
2import Command from "./Command.ts";
3/**
4 * @param name The program name to display in help and version message
5 */
6
7const cac = (name = '') => new CAC(name);
8
9export default cac;
10export { cac, CAC, Command };
\No newline at end of file