mirror of
https://github.com/PretendoNetwork/friends.git
synced 2026-03-21 18:04:11 -05:00
We have to do special handling for guest accounts, so the insecure method is enabled on both TicketGranting and SecureConnection. Alongside that, we override the RegisterEx function to do the additional processing required by friends.
40 lines
1.4 KiB
Modula-2
40 lines
1.4 KiB
Modula-2
module github.com/PretendoNetwork/friends
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.23.6
|
|
|
|
require (
|
|
github.com/PretendoNetwork/grpc-go v1.0.2
|
|
github.com/PretendoNetwork/nex-go/v2 v2.1.3
|
|
github.com/PretendoNetwork/nex-protocols-common-go/v2 v2.4.0
|
|
github.com/PretendoNetwork/nex-protocols-go/v2 v2.2.1
|
|
github.com/PretendoNetwork/plogger-go v1.1.0
|
|
github.com/PretendoNetwork/sql-manager v1.0.0
|
|
github.com/golang/protobuf v1.5.4
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/lib/pq v1.10.9
|
|
google.golang.org/grpc v1.71.1
|
|
)
|
|
|
|
require (
|
|
github.com/dolthub/maphash v0.1.0 // indirect
|
|
github.com/fatih/color v1.18.0 // indirect
|
|
github.com/jwalton/go-supportscolor v1.2.0 // indirect
|
|
github.com/klauspost/compress v1.18.0 // indirect
|
|
github.com/lxzan/gws v1.8.8 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/rasky/go-lzo v0.0.0-20200203143853-96a758eda86e // indirect
|
|
github.com/superwhiskers/crunch/v3 v3.5.7 // indirect
|
|
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect
|
|
golang.org/x/mod v0.24.0 // indirect
|
|
golang.org/x/net v0.39.0 // indirect
|
|
golang.org/x/sync v0.13.0 // indirect
|
|
golang.org/x/sys v0.32.0 // indirect
|
|
golang.org/x/term v0.31.0 // indirect
|
|
golang.org/x/text v0.24.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250414145226-207652e42e2e // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
)
|