# raft-bbolt This work is based on https://github.com/hashicorp/raft-boltdb This repository provides the `raftbbolt` package. The package exports the `Store` which is an implementation of both a `LogStore` and `StableStore`. It is meant to be used as a backend for the `raft` [package here](https://github.com/hashicorp/raft). This implementation uses [BBolt](https://github.com/etcd-io/bbolt). BBolt is a simple key/value store implemented in pure Go, and inspired by LMDB.