Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/command/call/cmd.ts
3584 views
1
import { Command } from "cliffy/command/mod.ts";
2
import { engineCommand } from "../../execute/engine.ts";
3
4
export const callCommand = new Command()
5
.name("call")
6
.description("Access functions of Quarto subsystems such as its rendering engines.")
7
.action(() => {
8
callCommand.showHelp();
9
Deno.exit(1);
10
}).command("engine", engineCommand);
11
12