Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrEntityNotFound is returned when a certain entity could not be located. ErrEntityNotFound = errors.New("secretStore: entity not found") // ErrEntityExists is returned when a certain entity was located but not meant to be. ErrEntityExists = errors.New("secretStore: entity already exists") // ErrPreconditionFailure is returned when there was a validation error with the parameters passed. ErrPreconditionFailure = errors.New("secretStore: parameters did not pass validation") )
Functions ¶
This section is empty.
Types ¶
type EngineType ¶
type EngineType string
const ( // EngineBolt uses the boltDB. EngineBolt EngineType = "bolt" )
Click to show internal directories.
Click to hide internal directories.