MCPcopy Index your code
hub / github.com/goinaction/code / Puller

Interface Puller

chapter10/listing03/listing03.go:26–28  ·  view source on GitHub ↗

============================================================================= Puller declares behavior for pulling data.

Source from the content-addressed store, hash-verified

24
25// Puller declares behavior for pulling data.
26type Puller interface {
27 Pull(d *Data) error
28}
29
30// Storer declares behavior for storing data.
31type Storer interface {

Callers

nothing calls this directly

Implementers 4

Xeniachapter10/listing03/listing03.go
Xeniachapter10/listing02/listing02.go
Xeniachapter10/listing01/listing01.go
Xeniachapter10/listing04/listing04.go

Calls

no outgoing calls

Tested by

no test coverage detected