mirror of
https://github.com/PretendoNetwork/friends.git
synced 2026-04-24 23:07:13 -05:00
Now database getters do error handling aswell, and in case of any error, the NEX or GRPC method throws a proper error about it. There are still some doubts on how to handle errors when a list of data is processed, so for now skip that element on the list and continue. Also add some constant errors to do better error handling.
31 lines
1.0 KiB
Modula-2
31 lines
1.0 KiB
Modula-2
module github.com/PretendoNetwork/friends
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/PretendoNetwork/grpc-go v1.0.2
|
|
github.com/PretendoNetwork/nex-go v1.0.35
|
|
github.com/PretendoNetwork/nex-protocols-common-go v1.0.25
|
|
github.com/PretendoNetwork/nex-protocols-go v1.0.49
|
|
github.com/PretendoNetwork/plogger-go v1.0.4
|
|
github.com/golang/protobuf v1.5.3
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/lib/pq v1.10.9
|
|
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb
|
|
google.golang.org/grpc v1.57.0
|
|
)
|
|
|
|
require (
|
|
github.com/fatih/color v1.15.0 // indirect
|
|
github.com/jwalton/go-supportscolor v1.2.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/superwhiskers/crunch/v3 v3.5.7 // indirect
|
|
golang.org/x/net v0.14.0 // indirect
|
|
golang.org/x/sys v0.11.0 // indirect
|
|
golang.org/x/term v0.11.0 // indirect
|
|
golang.org/x/text v0.12.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
|
)
|