mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-01 06:42:26 +00:00
snapshot functionality
This commit is contained in:
17
packages/opencode/src/cli/cmd/debug/index.ts
Normal file
17
packages/opencode/src/cli/cmd/debug/index.ts
Normal 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() {},
|
||||
})
|
||||
Reference in New Issue
Block a user