-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move packages to top level, have seperate go modules (#7)
Under this model, all folders are considered independent projects, with no need to upgrade everything at the same time, and no forcing of cross dependencies.
- Loading branch information
Scott Redig
authored
Oct 28, 2019
1 parent
fc07a9f
commit a87e9aa
Showing
19 changed files
with
389 additions
and
110 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,15 @@ | ||
module open-match.dev/open-match-ecosystem/agones-director-example | ||
|
||
go 1.13 | ||
|
||
require ( | ||
agones.dev/agones v1.0.0 | ||
github.com/grpc-ecosystem/grpc-gateway v1.11.3 // indirect | ||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect | ||
google.golang.org/genproto v0.0.0-20191009194640-548a555dbc03 // indirect | ||
google.golang.org/grpc v1.21.1 | ||
gopkg.in/yaml.v2 v2.2.4 // indirect | ||
k8s.io/apimachinery v0.0.0-20190221084156-01f179d85dbc | ||
k8s.io/client-go v9.0.0+incompatible | ||
open-match.dev/open-match v0.4.1-0.20191015212835-2aee5d128d65 | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
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
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
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,10 @@ | ||
module open-match.dev/open-match-ecosystem/defaultevaluator | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.3.2 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/stretchr/testify v1.4.0 | ||
open-match.dev/open-match v0.4.1-0.20191015212835-2aee5d128d65 | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
31 changes: 15 additions & 16 deletions
31
go/defaultevaluator/messages.pb.go → defaultevaluator/messages.pb.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,5 @@ | ||
module open-match.dev/open-match-ecosystem/demoui | ||
|
||
go 1.13 | ||
|
||
require golang.org/x/net v0.0.0-20191021144547-ec77196f6094 |
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,5 @@ | ||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= | ||
golang.org/x/net v0.0.0-20191021144547-ec77196f6094 h1:5O4U9trLjNpuhpynaDsqwCk+Tw6seqJz1EbqbnzHrc8= | ||
golang.org/x/net v0.0.0-20191021144547-ec77196f6094/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= | ||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | ||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.