Versions in this module Expand all Collapse all v0 v0.2.2 May 29, 2022 Changes in this version + type ItemRepo struct + func NewItemRepo() *ItemRepo + func (r *ItemRepo) Create(ctx context.Context, it domain.Item) (domain.Item, error) + func (r *ItemRepo) Delete(ctx context.Context, id string) error + func (r *ItemRepo) Get(ctx context.Context, id string) (domain.Item, error) + func (r *ItemRepo) Update(ctx context.Context, id string, updates domain.Item) (domain.Item, error)