bazaar/pkg/clients/clients.go

8 lines
92 B
Go

package clients
import "io"
type Client interface {
Get(url string) (io.Reader, error)
}