diff options
| author | Dax Raad <[email protected]> | 2025-05-19 16:07:01 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-26 12:40:17 -0400 |
| commit | fa8a46326afa2d7fbb592542abf243f248cb5992 (patch) | |
| tree | 96b7b0ef2054551ad1b8b3a48ce35c8f6f79ee5a /cmd | |
| parent | 652429377b99085d686d6b907c2f550c304e6b98 (diff) | |
| download | opencode-fa8a46326afa2d7fbb592542abf243f248cb5992.tar.gz opencode-fa8a46326afa2d7fbb592542abf243f248cb5992.zip | |
codegen
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/root.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/root.go b/cmd/root.go index 81083ef72..ea68cd5ad 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -5,12 +5,14 @@ import ( "fmt" "io" "os" + "strings" "sync" "time" "log/slog" tea "github.com/charmbracelet/bubbletea" + "github.com/go-viper/mapstructure/v2" zone "github.com/lrstanley/bubblezone" "github.com/spf13/cobra" "github.com/sst/opencode/internal/app" @@ -23,6 +25,7 @@ import ( "github.com/sst/opencode/internal/pubsub" "github.com/sst/opencode/internal/tui" "github.com/sst/opencode/internal/version" + "github.com/sst/opencode/pkg/client" ) type SessionIDHandler struct { |
