File size: 236 Bytes
369fac9
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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 };