snapshot functionality

This commit is contained in:
Dax Raad
2025-07-01 12:06:38 -04:00
parent 33b5fe236a
commit 11d042be25
8 changed files with 234 additions and 65 deletions

View File

@@ -0,0 +1,17 @@
import { cmd } from "../cmd"
import { FileCommand } from "./file"
import { LSPCommand } from "./lsp"
import { RipgrepCommand } from "./ripgrep"
import { SnapshotCommand } from "./snapshot"
export const DebugCommand = cmd({
command: "debug",
builder: (yargs) =>
yargs
.command(LSPCommand)
.command(RipgrepCommand)
.command(FileCommand)
.command(SnapshotCommand)
.demandCommand(),
async handler() {},
})