Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 309 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 309 Bytes

aPLib implementation in Go

Usage of the library should be pretty simple.

go get github.com/hatching/aplib
import (
    "github.com/hatching/aplib"
)

func hello() {
    v1 := aplib.Compress([]byte("hello world"))
    v2 := aplib.Decompress(v1)
    // ...
}