From 93e518aeabcbeaf34347c8cc949cab1e75bc5805 Mon Sep 17 00:00:00 2001 From: Jay Pipes Date: Mon, 22 Sep 2025 15:56:07 -0400 Subject: [PATCH] import gdt-http in cmd/gdt/main.go Signed-off-by: Jay Pipes --- cmd/gdt/go.mod | 2 ++ cmd/gdt/go.sum | 2 ++ cmd/gdt/main.go | 1 + 3 files changed, 5 insertions(+) diff --git a/cmd/gdt/go.mod b/cmd/gdt/go.mod index f4ee8aa..3417f14 100644 --- a/cmd/gdt/go.mod +++ b/cmd/gdt/go.mod @@ -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 @@ -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 diff --git a/cmd/gdt/go.sum b/cmd/gdt/go.sum index 2ad58e7..dda099d 100644 --- a/cmd/gdt/go.sum +++ b/cmd/gdt/go.sum @@ -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= diff --git a/cmd/gdt/main.go b/cmd/gdt/main.go index 3f5533a..0be3154 100644 --- a/cmd/gdt/main.go +++ b/cmd/gdt/main.go @@ -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" )