certificates/acme/db/nosql/nosql.go

11 lines
155 B
Go
Raw Normal View History

2021-02-25 18:24:24 +00:00
package nosql
import (
nosqlDB "github.com/smallstep/nosql"
)
// DB is a struct that implements the AcmeDB interface.
type DB struct {
db nosqlDB.DB
}