-
- Downloads
example
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- examples/packets/main.go 145 additions, 0 deletionsexamples/packets/main.go
- examples/packets/packets.tmpl 46 additions, 0 deletionsexamples/packets/packets.tmpl
- examples/packets/spec/handshake/clientbound.yaml 2 additions, 0 deletionsexamples/packets/spec/handshake/clientbound.yaml
- examples/packets/spec/handshake/serverbound.yaml 13 additions, 0 deletionsexamples/packets/spec/handshake/serverbound.yaml
- examples/packets/spec/status/clientbound.yaml 13 additions, 0 deletionsexamples/packets/spec/status/clientbound.yaml
- examples/packets/spec/status/serverbound.yaml 9 additions, 0 deletionsexamples/packets/spec/status/serverbound.yaml
- examples/packets/spec/types.yaml 250 additions, 0 deletionsexamples/packets/spec/types.yaml
- examples/packets/types.tmpl 306 additions, 0 deletionsexamples/packets/types.tmpl
- go.mod 2 additions, 0 deletionsgo.mod
- go.sum 7 additions, 1 deletiongo.sum
examples/packets/main.go
0 → 100644
examples/packets/packets.tmpl
0 → 100644
examples/packets/spec/types.yaml
0 → 100644
examples/packets/types.tmpl
0 → 100644
... | @@ -6,6 +6,7 @@ require ( | ... | @@ -6,6 +6,7 @@ require ( |
github.com/Masterminds/sprig/v3 v3.2.2 | github.com/Masterminds/sprig/v3 v3.2.2 | ||
github.com/iancoleman/strcase v0.2.0 | github.com/iancoleman/strcase v0.2.0 | ||
github.com/spf13/afero v1.9.3 | github.com/spf13/afero v1.9.3 | ||
sigs.k8s.io/yaml v1.3.0 | |||
) | ) | ||
require ( | require ( | ||
... | @@ -20,4 +21,5 @@ require ( | ... | @@ -20,4 +21,5 @@ require ( |
github.com/spf13/cast v1.3.1 // indirect | github.com/spf13/cast v1.3.1 // indirect | ||
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa // indirect | golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa // indirect | ||
golang.org/x/text v0.3.4 // indirect | golang.org/x/text v0.3.4 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | |||
) | ) |
Please register or sign in to comment