├── LICENSE ├── README.md ├── doc.go ├── easyproto_example_test.go ├── easyproto_test.go ├── easyproto_timing_test.go ├── go.mod ├── reader.go └── writer.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/easyproto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/easyproto/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/easyproto/HEAD/doc.go -------------------------------------------------------------------------------- /easyproto_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/easyproto/HEAD/easyproto_example_test.go -------------------------------------------------------------------------------- /easyproto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/easyproto/HEAD/easyproto_test.go -------------------------------------------------------------------------------- /easyproto_timing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/easyproto/HEAD/easyproto_timing_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/VictoriaMetrics/easyproto 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/easyproto/HEAD/reader.go -------------------------------------------------------------------------------- /writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictoriaMetrics/easyproto/HEAD/writer.go --------------------------------------------------------------------------------