e0615fa867
📁 Changed TDrive root folder
15 lines
393 B
TypeScript
15 lines
393 B
TypeScript
import { CommandModule } from "yargs";
|
|
|
|
const command: CommandModule = {
|
|
describe: "Manage Tdrive Applications",
|
|
command: "applications <command>",
|
|
builder: yargs =>
|
|
yargs.commandDir("applications_cmds", {
|
|
visit: commandModule => commandModule.default,
|
|
}),
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
handler: () => {},
|
|
};
|
|
|
|
export default command;
|