From 6bbdc5cea49eb1157b301d697966c250b696d1b6 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Tue, 23 Jul 2024 17:04:00 -0400 Subject: [PATCH] Updated Go version, added godotenv dependency, and removed unused main.go file. --- devbox.json | 2 +- go.mod | 2 +- main.go | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 main.go diff --git a/devbox.json b/devbox.json index e4846a317..be478488f 100644 --- a/devbox.json +++ b/devbox.json @@ -3,7 +3,7 @@ "packages": [ "ipfs@latest", "golangci-lint@latest", - "go_1_22@latest", + "go@1.22", "templ@latest", "air@latest" ], diff --git a/go.mod b/go.mod index 8be15b0e9..739d39572 100644 --- a/go.mod +++ b/go.mod @@ -55,6 +55,7 @@ require ( github.com/gorilla/mux v1.8.1 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/ipfs/kubo v0.29.0 + github.com/joho/godotenv v1.5.1 github.com/spf13/cast v1.6.0 github.com/spf13/cobra v1.8.0 github.com/spf13/pflag v1.0.5 @@ -196,7 +197,6 @@ require ( github.com/jbenet/goprocess v0.1.4 // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/jmhodges/levigo v1.0.0 // indirect - github.com/joho/godotenv v1.5.1 // indirect github.com/klauspost/compress v1.17.9 // indirect github.com/klauspost/cpuid/v2 v2.2.8 // indirect github.com/kr/pretty v0.3.1 // indirect diff --git a/main.go b/main.go deleted file mode 100644 index ba517f322..000000000 --- a/main.go +++ /dev/null @@ -1 +0,0 @@ -package hway