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