mirror of
https://github.com/PretendoNetwork/splatoon.git
synced 2026-04-25 23:37:20 -05:00
Some checks failed
Build and Publish Docker Image / build-publish (push) Has been cancelled
* feat(secure): Mark Splatfest sessions as OpenParticipation Bit of a hack but good enough to make things work for now * feat(secure): Add stubbed Splatoon Ranking protocol Fixes freezes related to Splatfest results upload * feat: matchmaking rewrite implementation * feat(secure): attempt to fix index bugs * fix: merge issue * fix(secure): forgot to change the import name * fix(secure): remove old index ignore * fix(secure): misspelling * fix(secure): remove unused var * fix(secure): revert previous fix * fix(secure): using another function * fix(secure): using another function * working on it * fix(secure): i hate these variable names * fix(secure): misspelled again * debug(secure): adding debugging * fix(secure): hopefully fix the error (thanks dani) * std(secure): standardize variable names * fix(secure): fix string issue * fix(secure): oops * fix(secure): remove attribute 1 * fix(secure): final fixups * fix(secure): final fixups * feat(secure): try fixing fest rooms * feat(secure): implement postgresql fix * merge * fix(secure): try once again to fix fests * fix(secure): ignore first param * fix: bump library versions and remove override * chore: go fmt all files * chore: Remove unused code * chore: Explicitly ignore error in criteria cleanup It's fine we just won't mm into this room --------- Co-authored-by: Ash Logan <ash@heyquark.com>
28 lines
757 B
Go
28 lines
757 B
Go
package globals
|
|
|
|
import (
|
|
"database/sql"
|
|
pb "github.com/PretendoNetwork/grpc-go/account"
|
|
"github.com/PretendoNetwork/nex-go/v2"
|
|
"github.com/PretendoNetwork/nex-protocols-common-go/v2/globals"
|
|
"github.com/PretendoNetwork/plogger-go"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/metadata"
|
|
)
|
|
|
|
var Logger *plogger.Logger
|
|
var KerberosPassword = "password" // * Default password
|
|
|
|
var AuthenticationServer *nex.PRUDPServer
|
|
var AuthenticationEndpoint *nex.PRUDPEndPoint
|
|
|
|
var SecureServer *nex.PRUDPServer
|
|
var SecureEndpoint *nex.PRUDPEndPoint
|
|
|
|
var GRPCAccountClientConnection *grpc.ClientConn
|
|
var GRPCAccountClient pb.AccountClient
|
|
var GRPCAccountCommonMetadata metadata.MD
|
|
|
|
var Postgres *sql.DB
|
|
var MatchmakingManager *common_globals.MatchmakingManager
|