From 9ed53c286a3b2a0879af715a49ff7d51c461151a Mon Sep 17 00:00:00 2001 From: "Arik Jones (aider)" Date: Tue, 3 Sep 2024 11:26:46 -0500 Subject: [PATCH] fix: update go.mod file --- go.mod | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 938ac14..dcac915 100644 --- a/go.mod +++ b/go.mod @@ -2,14 +2,12 @@ module github.com/tnypxl/rollup go 1.23 -require github.com/spf13/cobra v1.8.1 +require ( + github.com/anthropics/anthropic-sdk-go v0.4.1 + github.com/spf13/cobra v1.8.1 +) require ( - github.com/anthropics/anthropic-sdk-go v0.1.0-alpha.1 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/tidwall/gjson v1.14.4 // indirect - github.com/tidwall/match v1.1.1 // indirect - github.com/tidwall/pretty v1.2.1 // indirect - github.com/tidwall/sjson v1.2.5 // indirect )