MCPcopy Create free account
hub / github.com/devfullcycle/goexpert / Create

Method Create

9-APIs/internal/infra/database/interfaces.go:11–11  ·  view source on GitHub ↗
(product *entity.Product)

Source from the content-addressed store, hash-verified

9
10type ProductInterface interface {
11 Create(product *entity.Product) error
12 FindAll(page, limit int, sort string) ([]entity.Product, error)
13 FindByID(id string) (*entity.Product, error)
14 Update(product *entity.Product) error

Callers

nothing calls this directly

Implementers 1

Product9-APIs/internal/infra/database/product

Calls

no outgoing calls

Tested by

no test coverage detected