summaryrefslogtreecommitdiffhomepage
path: root/cmd
diff options
context:
space:
mode:
authorKujtim Hoxha <[email protected]>2025-04-07 12:56:54 +0200
committerKujtim Hoxha <[email protected]>2025-04-07 12:56:54 +0200
commita6db4f652c7a419ee9728f142ed378497a4f6db2 (patch)
treef64cc2c65fb5214b378a1414d2d5c98f8efcc7e7 /cmd
parentb8383f55908d5545dd378a608e400050e718ebe0 (diff)
downloadopencode-a6db4f652c7a419ee9728f142ed378497a4f6db2.tar.gz
opencode-a6db4f652c7a419ee9728f142ed378497a4f6db2.zip
remove test code
Diffstat (limited to 'cmd')
-rw-r--r--cmd/lsp/main.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/cmd/lsp/main.go b/cmd/lsp/main.go
deleted file mode 100644
index 0c7f79329..000000000
--- a/cmd/lsp/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package main
-
-import (
- "context"
- "fmt"
-
- "github.com/kujtimiihoxha/termai/internal/llm/tools"
-)
-
-func main() {
- t := tools.NewSourcegraphTool()
- r, _ := t.Run(context.Background(), tools.ToolCall{
- Input: `{"query": "context.WithCancel lang:go"}`,
- })
- fmt.Println(r.Content)
-}