-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 75b40b3
Showing
22 changed files
with
1,490 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.env | ||
.git | ||
build | ||
log | ||
go.work | ||
*.test | ||
go.work.sum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# If you prefer the allow list template instead of the deny list, see community template: | ||
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore | ||
# | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ | ||
data/ | ||
|
||
# Go workspace file | ||
go.work | ||
go.work.sum | ||
|
||
# custom | ||
.vscode | ||
.env | ||
build | ||
data | ||
log | ||
*.pem | ||
*.key | ||
*.yaml | ||
*.env | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# --- builder --- | ||
FROM golang:1.20.6-alpine3.17 as builder | ||
LABEL stage=builder | ||
RUN apk add git | ||
WORKDIR /build | ||
|
||
COPY go.* ./ | ||
RUN go mod download | ||
|
||
COPY . ./ | ||
ARG BUILD_STRING=pretendo.pokkentournament.docker | ||
RUN go build -ldflags "-X 'main.serverBuildString=${BUILD_STRING}'" -v -o server | ||
|
||
# --- runner --- | ||
FROM alpine:3.17 as runner | ||
WORKDIR /build | ||
|
||
COPY --from=builder /build/server /build/ | ||
CMD ["/build/server"] |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# TODO - Assumes a UNIX-like OS | ||
|
||
RED := $(shell tput setaf 1) | ||
BLUE := $(shell tput setaf 4) | ||
CYAN := $(shell tput setaf 14) | ||
ORANGE := $(shell tput setaf 202) | ||
YELLOW := $(shell tput setaf 214) | ||
RESET := $(shell tput sgr0) | ||
|
||
ifeq ($(shell which go),) | ||
# TODO - Read contents from .git folder instead? | ||
$(error "$(RED)go command not found. Install go to continue $(BLUE)https://go.dev/doc/install$(RESET)") | ||
endif | ||
|
||
ifneq ($(wildcard .git),) | ||
# * .git folder exists, build server build string from repo info | ||
ifeq ($(shell which git),) | ||
# TODO - Read contents from .git folder instead? | ||
$(error "$(RED)git command not found. Install git to continue $(ORANGE)https://git-scm.com/downloads$(RESET)") | ||
endif | ||
$(info "$(CYAN)Building server build string from repository info$(RESET)") | ||
# * Build server build string from repo info | ||
BRANCH := $(shell git rev-parse --abbrev-ref HEAD) | ||
REMOTE_ORIGIN := $(shell git config --get remote.origin.url) | ||
|
||
# * Handle multiple origin URL formats | ||
HTTPS_PREFIX_CHECK := $(shell echo $(REMOTE_ORIGIN) | head -c 8) | ||
HTTP_PREFIX_CHECK := $(shell echo $(REMOTE_ORIGIN) | head -c 7) | ||
GIT@_PREFIX_CHECK := $(shell echo $(REMOTE_ORIGIN) | head -c 4) | ||
|
||
ifeq ($(HTTPS_PREFIX_CHECK), https://) | ||
REMOTE_PATH := $(shell echo $(REMOTE_ORIGIN) | cut -d/ -f4-) | ||
else ifeq ($(HTTP_PREFIX_CHECK), http://) | ||
REMOTE_PATH := $(shell echo $(REMOTE_ORIGIN) | cut -d/ -f4-) | ||
else ifeq ($(GIT@_PREFIX_CHECK), git@) | ||
REMOTE_PATH := $(shell echo $(REMOTE_ORIGIN) | cut -d: -f2-) | ||
else | ||
REMOTE_PATH := $(shell echo $(REMOTE_ORIGIN) | cut -d/ -f2-) | ||
endif | ||
|
||
HASH := $(shell git rev-parse --short HEAD) | ||
SERVER_BUILD := $(BRANCH):$(REMOTE_PATH)@$(HASH) | ||
|
||
else | ||
# * .git folder not present, assume downloaded from zip file and just use folder name | ||
$(info "$(CYAN)git repository not found. Building server build string from folder name$(RESET)") | ||
SERVER_BUILD := $(notdir $(CURDIR)) | ||
endif | ||
|
||
# * Final build string | ||
DATE_TIME := $(shell date --iso=seconds) | ||
BUILD_STRING := $(SERVER_BUILD), $(DATE_TIME) | ||
|
||
all: | ||
ifeq ($(wildcard .env),) | ||
$(warning "$(YELLOW).env file not found, environment variables may not be populated correctly$(RESET)") | ||
endif | ||
go get -u | ||
go mod tidy | ||
go build -ldflags "-X 'main.serverBuildString=$(BUILD_STRING)'" -o ./build/$(notdir $(CURDIR)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# Pokkén Tournament replacement server | ||
Includes both the authentication and secure servers | ||
|
||
## Status | ||
Mostly functional, besides Ranking data. | ||
|
||
## Compiling | ||
|
||
### Setup | ||
Install [Go](https://go.dev/doc/install) and [git](https://git-scm.com/downloads), then clone and enter the repository | ||
|
||
```bash | ||
$ git clone https://github.com/PretendoNetwork/pokken-tournament | ||
$ cd pokken-tournament | ||
``` | ||
|
||
### Compiling and running using `docker` (PREFERRED) | ||
Make sure you have Docker installed on your system. This can be done using various instructions available online. | ||
|
||
Once installed, execute the following to build: | ||
|
||
```bash | ||
$ docker build -t pokken-tournament --build-arg BUILD_STRING=YOUR_BUILD_STRING_HERE . | ||
$ docker image prune --filter label=stage=builder -f | ||
``` | ||
Note: `--build-arg` flag/variable is optional. | ||
|
||
Create a `.env` file with all of the necessary environment variables set. The variable list is available below. | ||
|
||
Example: | ||
``` | ||
PN_POKKENTOURNAMENT_AUTHENTICATION_SERVER_PORT=60008 | ||
PN_POKKENTOURNAMENT_SECURE_SERVER_HOST=192.168.1.2 | ||
PN_POKKENTOURNAMENT_SECURE_SERVER_PORT=60009 | ||
... | ||
``` | ||
|
||
Then, you can use the following command to run the image. | ||
```bash | ||
$ docker run --name pokken-tournament --env-file .env -it pokken-tournament | ||
``` | ||
|
||
Other tools and systems can also make use of this image, including Docker Compose and Portainer. | ||
|
||
### Compiling using `go` | ||
To compile using Go, `go get` the required modules and then `go build` to your desired location. You may also want to tidy the go modules, though this is optional | ||
|
||
```bash | ||
$ go get -u | ||
$ go mod tidy | ||
$ go build -o build/pokken-tournament | ||
``` | ||
|
||
The server is now built to `build/pokken-tournament` | ||
|
||
When compiling with only Go, the authentication servers build string is not automatically set. This should not cause any issues with gameplay, but it means that the server build will not be visible in any packet dumps or logs a title may produce | ||
|
||
To compile the servers with the authentication server build string, add `-ldflags "-X 'main.serverBuildString=BUILD_STRING_HERE'"` to the build command, or use `make` to compile the server | ||
|
||
### Compiling using `make` | ||
Compiling using `make` will read the local `.git` directory to create a dynamic authentication server build string, based on your repositories remote origin and current commit. It will also use the current folders name as the executables name | ||
|
||
Install `make` onto your system (this varies by OS), and run `make` while inside the repository | ||
|
||
```bash | ||
$ make | ||
``` | ||
|
||
The server is now built to `build/pokken-tournament` with the authentication server build string already set | ||
|
||
## Configuration | ||
All configuration options are handled via environment variables | ||
|
||
`.env` files are supported | ||
|
||
| Name | Description | Required | | ||
|-----------------------------------------|------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------| | ||
| `PN_POKKENTOURNAMENT_KERBEROS_PASSWORD` | Password used as part of the internal server data in Kerberos tickets | No (Default password `password` will be used) | | ||
| `PN_POKKENTOURNAMENT_AUTHENTICATION_SERVER_PORT` | Port for the authentication server | Yes | | ||
| `PN_POKKENTOURNAMENT_SECURE_SERVER_HOST` | Host name for the secure server (should point to the same address as the authentication server) | Yes | | ||
| `PN_POKKENTOURNAMENT_SECURE_SERVER_PORT` | Port for the secure server | Yes | | ||
| `PN_POKKENTOURNAMENT_ACCOUNT_GRPC_HOST` | Host name for your account server gRPC service | Yes | | ||
| `PN_POKKENTOURNAMENT_ACCOUNT_GRPC_PORT` | Port for your account server gRPC service | Yes | | ||
| `PN_POKKENTOURNAMENT_ACCOUNT_GRPC_API_KEY` | API key for your account server gRPC service | No (Assumed to be an open gRPC API) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package database | ||
|
||
import ( | ||
"database/sql" | ||
|
||
"github.com/PretendoNetwork/pokken-tournament/globals" | ||
_ "github.com/mattn/go-sqlite3" | ||
) | ||
|
||
// Still WIP, unused | ||
func InitDatabase() { | ||
var err error | ||
globals.RankingDatabase, err = sql.Open("sqlite3", "./ranking.db") | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
globals.RankingDatabase.Exec(` | ||
CREATE TABLE IF NOT EXISTS commondata ( | ||
pid MEDIUMINT NOT NULL DEFAULT 0, | ||
uniqueId BIGINT NOT NULL DEFAULT 0, | ||
data BLOB NOT NULL DEFAULT '' | ||
); | ||
`) | ||
|
||
globals.RankingDatabase.Exec(` | ||
CREATE TABLE IF NOT EXISTS scoredata ( | ||
pid MEDIUMINT NOT NULL DEFAULT 0, | ||
uniqueId BIGINT NOT NULL DEFAULT 0, | ||
category MEDIUMINT NOT NULL DEFAULT 0, | ||
score MEDIUMINT NOT NULL DEFAULT 0, | ||
groups BLOB NOT NULL DEFAULT '', | ||
param BIGINT NOT NULL DEFAULT 0, | ||
); | ||
`) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package globals | ||
|
||
import ( | ||
"database/sql" | ||
|
||
pb "github.com/PretendoNetwork/grpc-go/account" | ||
"github.com/PretendoNetwork/nex-go" | ||
"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.Server | ||
var SecureServer *nex.Server | ||
var GRPCAccountClientConnection *grpc.ClientConn | ||
var GRPCAccountClient pb.AccountClient | ||
var GRPCAccountCommonMetadata metadata.MD | ||
|
||
var RankingDatabase *sql.DB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package globals | ||
|
||
import ( | ||
"context" | ||
|
||
pb "github.com/PretendoNetwork/grpc-go/account" | ||
"github.com/PretendoNetwork/nex-go" | ||
"github.com/PretendoNetwork/nex-protocols-go/globals" | ||
"google.golang.org/grpc/metadata" | ||
) | ||
|
||
func PasswordFromPID(pid uint32) (string, uint32) { | ||
ctx := metadata.NewOutgoingContext(context.Background(), GRPCAccountCommonMetadata) | ||
|
||
response, err := GRPCAccountClient.GetNEXPassword(ctx, &pb.GetNEXPasswordRequest{Pid: pid}) | ||
if err != nil { | ||
globals.Logger.Error(err.Error()) | ||
return "", nex.Errors.RendezVous.InvalidUsername | ||
} | ||
|
||
return response.Password, 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
module github.com/PretendoNetwork/pokken-tournament | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/PretendoNetwork/grpc-go v1.0.1 | ||
github.com/PretendoNetwork/nex-go v1.0.41 | ||
github.com/PretendoNetwork/nex-protocols-common-go v1.0.29 | ||
github.com/PretendoNetwork/nex-protocols-go v1.0.55 | ||
github.com/PretendoNetwork/plogger-go v1.0.4 | ||
github.com/joho/godotenv v1.5.1 | ||
github.com/mattn/go-sqlite3 v1.14.17 | ||
google.golang.org/grpc v1.56.1 | ||
) | ||
|
||
require ( | ||
github.com/fatih/color v1.15.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // 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.20 // indirect | ||
github.com/superwhiskers/crunch/v3 v3.5.7 // indirect | ||
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect | ||
golang.org/x/mod v0.13.0 // indirect | ||
golang.org/x/net v0.11.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/text v0.11.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
github.com/PretendoNetwork/grpc-go v1.0.1 h1:3O0n4vnRX9rAZfrrjZydDjEOyWb4TbJcvwMrtY3Yz9g= | ||
github.com/PretendoNetwork/grpc-go v1.0.1/go.mod h1:XZjEsij9lL7HJBNkH6JPbBIkUSq/1rjflvjGdv+DAj0= | ||
github.com/PretendoNetwork/nex-go v1.0.41 h1:TcBb1Bpe2KAB+AXaGX1K9NVQBRtZJIoy4yCvRde2xbI= | ||
github.com/PretendoNetwork/nex-go v1.0.41/go.mod h1:QwHEa165DeVd0xIuthrgc3j6NWXT8lyPSG6t5kC/Shk= | ||
github.com/PretendoNetwork/nex-protocols-common-go v1.0.22/go.mod h1:UwVHUdB1WFlzVn4yq8WLai0J+9OQXw4cg5qNjnJQ3RU= | ||
github.com/PretendoNetwork/nex-protocols-common-go v1.0.28 h1:ErkWga7Uzn4WoDU8Q/Sy+geHy0fF0G/5wFnL5i6hngI= | ||
github.com/PretendoNetwork/nex-protocols-common-go v1.0.28/go.mod h1:4jYhLg+Cb2qhJHyyA+f2OwCrmc98zuTO3JPWK22mIKw= | ||
github.com/PretendoNetwork/nex-protocols-common-go v1.0.29 h1:ZvZNsAbdgWIGggZhn6EePuyYqI34FuV4C+fMkmmwWSA= | ||
github.com/PretendoNetwork/nex-protocols-common-go v1.0.29/go.mod h1:4jYhLg+Cb2qhJHyyA+f2OwCrmc98zuTO3JPWK22mIKw= | ||
github.com/PretendoNetwork/nex-protocols-go v1.0.54/go.mod h1:136762CMIcAsTZDrt4W7gDE4ppiBuc9zN2QFOHESjS8= | ||
github.com/PretendoNetwork/nex-protocols-go v1.0.55 h1:8QMeCNO2eZO4m7CRT/nv2WWm+gDh/REKR5jKTYQaaCs= | ||
github.com/PretendoNetwork/nex-protocols-go v1.0.55/go.mod h1:136762CMIcAsTZDrt4W7gDE4ppiBuc9zN2QFOHESjS8= | ||
github.com/PretendoNetwork/plogger-go v1.0.4 h1:PF7xHw9eDRHH+RsAP9tmAE7fG0N0p6H4iPwHKnsoXwc= | ||
github.com/PretendoNetwork/plogger-go v1.0.4/go.mod h1:7kD6M4vPq1JL4LTuPg6kuB1OvUBOwQOtAvTaUwMbwvU= | ||
github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= | ||
github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw= | ||
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= | ||
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= | ||
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= | ||
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= | ||
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= | ||
github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= | ||
github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= | ||
github.com/jwalton/go-supportscolor v1.2.0 h1:g6Ha4u7Vm3LIsQ5wmeBpS4gazu0UP1DRDE8y6bre4H8= | ||
github.com/jwalton/go-supportscolor v1.2.0/go.mod h1:hFVUAZV2cWg+WFFC4v8pT2X/S2qUUBYMioBD9AINXGs= | ||
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= | ||
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= | ||
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= | ||
github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= | ||
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= | ||
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= | ||
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= | ||
github.com/mattn/go-sqlite3 v1.14.17 h1:mCRHCLDUBXgpKAqIKsaAaAsrAlbkeomtRFKXh2L6YIM= | ||
github.com/mattn/go-sqlite3 v1.14.17/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= | ||
github.com/superwhiskers/crunch/v3 v3.5.7 h1:N9RLxaR65C36i26BUIpzPXGy2f6pQ7wisu2bawbKNqg= | ||
github.com/superwhiskers/crunch/v3 v3.5.7/go.mod h1:4ub2EKgF1MAhTjoOCTU4b9uLMsAweHEa89aRrfAypXA= | ||
golang.org/x/exp v0.0.0-20231006140011-7918f672742d h1:jtJma62tbqLibJ5sFQz8bKtEM8rJBtfilJ2qTU199MI= | ||
golang.org/x/exp v0.0.0-20231006140011-7918f672742d/go.mod h1:ldy0pHrwJyGW56pPQzzkH36rKxoZW1tw7ZJpeKx+hdo= | ||
golang.org/x/mod v0.13.0 h1:I/DsJXRlw/8l/0c24sM9yb0T4z9liZTduXvdAWYiysY= | ||
golang.org/x/mod v0.13.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= | ||
golang.org/x/net v0.11.0 h1:Gi2tvZIJyBtO9SDr1q9h5hEQCp/4L2RQ+ar0qjx2oNU= | ||
golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ= | ||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||
golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= | ||
golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= | ||
golang.org/x/term v0.13.0 h1:bb+I9cTfFazGW51MZqBVmZy7+JEJMouUHTUSKVQLBek= | ||
golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= | ||
golang.org/x/text v0.11.0 h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4= | ||
golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 h1:DEH99RbiLZhMxrpEJCZ0A+wdTe0EOgou/poSLx9vWf4= | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= | ||
google.golang.org/grpc v1.56.1 h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ= | ||
google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= | ||
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= | ||
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= | ||
google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= | ||
google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= |
Oops, something went wrong.