├── .gitignore ├── README.md ├── events.json ├── events.protobuf ├── go.mod ├── go.sum ├── main.go ├── publish.proto └── publish └── publish.pb.go /.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfelter/protobuf-example/HEAD/README.md -------------------------------------------------------------------------------- /events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfelter/protobuf-example/HEAD/events.json -------------------------------------------------------------------------------- /events.protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfelter/protobuf-example/HEAD/events.protobuf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfelter/protobuf-example/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfelter/protobuf-example/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfelter/protobuf-example/HEAD/main.go -------------------------------------------------------------------------------- /publish.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfelter/protobuf-example/HEAD/publish.proto -------------------------------------------------------------------------------- /publish/publish.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfelter/protobuf-example/HEAD/publish/publish.pb.go --------------------------------------------------------------------------------