Categorygithub.com/dooferlad/blight
repositorypackage
0.1.1
Repository: https://github.com/dooferlad/blight.git
Documentation: pkg.go.dev

# README

Blight

Blight is the boilerplate around bbolt that I found myself copying out of one project into another, then stopped to put it here.

db := blight.New(bdb)
db.Set("bucket", "key", "value")
v, err := db.Get("bucket", "key")

v == "value"

It isn't much, but it makes my life easier.