MCPcopy
hub / github.com/lotusirous/go-concurrency-patterns / Fetch

Function Fetch

14-adv-subscription/main.go:455–457  ·  view source on GitHub ↗

Fetch returns a Fetcher for Items from domain.

(domain string)

Source from the content-addressed store, hash-verified

453
454// Fetch returns a Fetcher for Items from domain.
455func Fetch(domain string) Fetcher {
456 return fakeFetch(domain)
457}
458
459func fakeFetch(domain string) Fetcher {
460 return &fakeFetcher{channel: domain}

Callers 1

mainFunction · 0.85

Calls 1

fakeFetchFunction · 0.85

Tested by

no test coverage detected