https://github.com/sirkon/ccii
Simple serialization format made for parameter extraction with protoc
https://github.com/sirkon/ccii
Last synced: 3 months ago
JSON representation
Simple serialization format made for parameter extraction with protoc
- Host: GitHub
- URL: https://github.com/sirkon/ccii
- Owner: sirkon
- License: mit
- Created: 2018-01-20T09:23:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-03T09:48:51.000Z (over 5 years ago)
- Last Synced: 2024-06-20T14:28:09.654Z (12 months ago)
- Language: Go
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CCII is serializer/deserialzier
[](https://travis-ci.org/sirkon/ccii)
I don't know exactly why did I decide to give such a weird name. Just let it go.
##### Installation
```bash
go get -u github.com/sirkon/ccii
```
or
```bash
dep ensure -add github.com/sirkon/ccii
```##### Purpose
The main purpose is to pass parameters into [protocol buffers](https://github.com/google/protobuf) compiler's plugins
##### Usage:
* Marshal
```go
data, err := ccii.Marshal(obj)
```
* Unmarshal
```go
err := ccii.Unmarshal(data, &dest)
```