mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:19:31 +08:00
10 lines
No EOL
236 B
Text
10 lines
No EOL
236 B
Text
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 }; |