Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthService ¶
type SneakerReferenceSerializer ¶
type SneakerReferenceSerializer interface { Decode(input []byte) (*model.SneakerReference, error) DecodeRange(input []byte) ([]*model.SneakerReference, error) DecodeMap(input []byte) (map[string]interface{}, error) DecodeInto(input []byte, target interface{}) error Encode(input interface{}) ([]byte, error) }
type SneakerReferenceService ¶
type SneakerReferenceService interface { FetchOne(code string, params *meta.RequestParams) (*model.SneakerReference, error) Fetch(codes []string, params *meta.RequestParams) ([]*model.SneakerReference, error) FetchAll(params *meta.RequestParams) ([]*model.SneakerReference, error) FetchQuery(query meta.RequestQuery, params *meta.RequestParams) ([]*model.SneakerReference, error) StoreOne(sneakerReference *model.SneakerReference) error Store(sneakerReference []*model.SneakerReference) error Modify(sneakerReferences *model.SneakerReference) error Count(query meta.RequestQuery, params *meta.RequestParams) (int, error) CountAll() (int, error) }
Click to show internal directories.
Click to hide internal directories.