An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# CCII is serializer/deserialzier

[![Build Status](https://travis-ci.org/sirkon/ccii.svg?branch=master)](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)
```