d91a13e2cc
🔄 Rename all "twake" instances to "tdrive"
15 lines
385 B
TypeScript
15 lines
385 B
TypeScript
import { CommandModule } from "yargs";
|
|
|
|
const command: CommandModule = {
|
|
describe: "Manage Tdrive Workspaces",
|
|
command: "workspace <command>",
|
|
builder: yargs =>
|
|
yargs.commandDir("workspace_cmds", {
|
|
visit: commandModule => commandModule.default,
|
|
}),
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
handler: () => {},
|
|
};
|
|
|
|
export default command;
|