mirror of
https://github.com/zhigang1992/velociraptor.git
synced 2026-01-12 22:53:24 +08:00
Add support for cachedOnly, noCheck, noRemote, quiet, reload, unstable and watch Deno cli options
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import { loadConfig } from "./src/load_config.ts";
|
|
import { VrCommand } from "./src/cli/commands/vr.ts";
|
|
|
|
if (import.meta.main) {
|
|
const config = await loadConfig();
|
|
new VrCommand(config)
|
|
.parse(Deno.args);
|
|
}
|