Skip to content

Instantly share code, notes, and snippets.

@aaronsw
aaronsw / gotour-70.go
Created July 5, 2012 00:32 — forked from kylelemons/gotour-69.go
My solution to Go Tour #70 - Web Crawler
package main
import (
"fmt"
"time"
)
type Fetcher interface {
// Fetch returns the body of URL and
// a slice of URLs found on that page.