certificates/acme/db/nosql/nosql.go
2021-03-25 12:05:45 -07:00

10 lines
155 B
Go

package nosql
import (
nosqlDB "github.com/smallstep/nosql"
)
// DB is a struct that implements the AcmeDB interface.
type DB struct {
db nosqlDB.DB
}