版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
236 B

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