Matrix/go.mod

15 lines
252 B
Modula-2
Raw Normal View History

2024-04-12 08:00:53 +00:00
module example.com/MatrixGameOfLife
go 1.22.1
require (
2024-04-14 19:19:07 +00:00
github.com/go-resty/resty/v2 v2.12.0
github.com/joho/godotenv v1.5.1
2024-04-14 23:22:32 +00:00
github.com/buger/goterm v1.0.4
2024-04-12 08:00:53 +00:00
)
2024-04-14 19:19:07 +00:00
2024-04-14 23:22:32 +00:00
require (
golang.org/x/net v0.24.0 // indirect
golang.org/x/sys v0.19.0 // indirect
)