OpenWeather-gRPC-API/go.mod

18 lines
477 B
Modula-2
Raw Normal View History

2022-09-01 23:43:01 -04:00
module codeberg.org/andcscott/OpenWeather-gRPC-API
2022-07-25 16:16:27 -04:00
2022-08-04 15:03:44 -04:00
go 1.19
2022-07-26 01:05:52 -04:00
require (
github.com/joho/godotenv v1.4.0
2022-09-01 02:18:14 -04:00
google.golang.org/grpc v1.49.0
2022-08-04 15:03:44 -04:00
google.golang.org/protobuf v1.28.1
2022-07-26 01:05:52 -04:00
)
require (
github.com/golang/protobuf v1.5.2 // indirect
2022-09-01 02:18:14 -04:00
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b // indirect
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
2022-08-04 15:03:44 -04:00
golang.org/x/text v0.3.7 // indirect
2022-09-01 02:18:14 -04:00
google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf // indirect
2022-07-26 01:05:52 -04:00
)