wabzsy / aplib

Golang implementation of aPLib.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Golang implementation of aPLib.

License:Other


Languages

Language:Go 100.0%