Update dependencies in go.mod and go.sum; refactor gRPC server initialization in main.go

This commit is contained in:
Phillip Michelsen
2025-08-04 19:43:46 +07:00
parent 5be0d4db06
commit f4333fc30a
6 changed files with 15 additions and 11 deletions

8
go.mod
View File

@@ -10,8 +10,8 @@ require (
)
require (
golang.org/x/net v0.38.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/text v0.23.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
golang.org/x/net v0.41.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.26.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
)