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