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

https://github.com/dgrr/msgpack


https://github.com/dgrr/msgpack

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# msgpack

msgpack implementation avoiding allocations.

## Usage

```go
package main

import (
"github.com/d2gr/msgpack"
)

func main() {
b := msgpack.AppendString(nil, "Hello world")

// setup connection or whatever you want

conn.Write(b)
}
```