bazaar/pkg/models/shop.go

8 lines
105 B
Go

package models
type ShopFactory func() Shop
type Shop interface {
Get(url string) (*Product, error)
}