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)
// ...
}