add golang dependencies

This commit is contained in:
Kota-Yamaguchi 2024-11-10 21:59:19 +09:00
parent 6d2f6b6372
commit 6524cfca99
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,10 @@
module evaluate
go 1.23.0
require (
github.com/joho/godotenv v1.5.1
golang.org/x/term v0.26.0
)
require golang.org/x/sys v0.27.0 // indirect

View File

@ -0,0 +1,6 @@
github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0=
github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.26.0 h1:WEQa6V3Gja/BhNxg540hBip/kkaYtRg3cxg4oXSw4AU=
golang.org/x/term v0.26.0/go.mod h1:Si5m1o57C5nBNQo5z1iq+XDijt21BDBDp2bK0QI8e3E=