Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cmd/gdt/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ go 1.24.3

require (
github.com/gdt-dev/core v1.10.0
github.com/gdt-dev/http v1.10.0
github.com/gdt-dev/kube v1.10.1
github.com/samber/lo v1.51.0
github.com/spf13/cobra v1.10.1
Expand All @@ -23,6 +24,7 @@ require (
github.com/go-openapi/swag v0.23.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/gnostic-models v0.7.0 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions cmd/gdt/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ github.com/fxamacker/cbor/v2 v2.9.0 h1:NpKPmjDBgUfBms6tr6JZkTHtfFGcMKsw3eGcmD/sa
github.com/fxamacker/cbor/v2 v2.9.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ=
github.com/gdt-dev/core v1.10.0 h1:yX0MG2Tt+O34JGDFWcS63LV47lWpizto4HAyR/ugAC0=
github.com/gdt-dev/core v1.10.0/go.mod h1:Bw8J6kUW0b7MUL8qW5e7qSbxb4SI9EAWQ0a4cAoPVpo=
github.com/gdt-dev/http v1.10.0 h1:rYeUEy3CmuW/idMC3NxOomxguSmfKBvn0uLadZSwrBM=
github.com/gdt-dev/http v1.10.0/go.mod h1:pWFKveQS1WHgDbq/lyIew9mkdelZIJZnOnIrgByEAvU=
github.com/gdt-dev/kube v1.10.1 h1:0cE4QfbWSBr0OD+qhW9+4Kf62Z2aypPCuYBZvO997c8=
github.com/gdt-dev/kube v1.10.1/go.mod h1:9F98P/wUEMHYjfvBXgomMFoKj6m2N1+Die7cDLRVj+s=
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
Expand Down
1 change: 1 addition & 0 deletions cmd/gdt/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
_ "github.com/gdt-dev/core/plugin/exec"
"github.com/gdt-dev/gdt/cmd/gdt/cmd"
"github.com/gdt-dev/gdt/cmd/gdt/pkg/cli"
_ "github.com/gdt-dev/http"
_ "github.com/gdt-dev/kube"
)

Expand Down
Loading