model

package
v0.24.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 14, 2022 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Overview

package model helps with data modelling on top of the store

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrNotFound      = errors.New("not found")
	ErrAlreadyExists = errors.New("already exists")
)

Functions

func Create

func Create(ctx context.Context, e Entity) error

func Delete

func Delete(ctx context.Context, e Entity) error

func List

func List(ctx context.Context, e Entity, rsp interface{}, q Query) error

func Read

func Read(ctx context.Context, e Entity) error

func ReadIndex

func ReadIndex(ctx context.Context, e Entity) error

func Update

func Update(ctx context.Context, e Entity) error

Types

type Entity

type Entity interface {
	// The primary key
	Key(ctx context.Context) string
	// The index for the entity
	Index(ctx context.Context) string
	// The raw value of the entity
	Value() interface{}
}

type Query

type Query struct {
	Limit  uint
	Offset uint
	Order  string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL