├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── main.go ├── sample.json ├── schema_registry.go └── schema_registry_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegangsta/schema_registry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegangsta/schema_registry/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegangsta/schema_registry/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegangsta/schema_registry/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegangsta/schema_registry/HEAD/main.go -------------------------------------------------------------------------------- /sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegangsta/schema_registry/HEAD/sample.json -------------------------------------------------------------------------------- /schema_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegangsta/schema_registry/HEAD/schema_registry.go -------------------------------------------------------------------------------- /schema_registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegangsta/schema_registry/HEAD/schema_registry_test.go --------------------------------------------------------------------------------