added a new iterator with error handling

Just finish the first pharse
This commit is contained in:
jian.han 2018-01-24 16:24:53 +10:00
parent d5aad34fce
commit d1e5d3f1c1

View File

@ -0,0 +1,27 @@
package main
import (
"time"
"github.com/davecgh/go-spew/spew"
)
type FetchResult struct {
Domain string
StatusCode uint
Header string
}
func dummyFetchUrl(url string) *FetchResult {
time.Sleep(time.Second * 1)
return &FetchResult{
url,
200,
"Dummy Header",
}
}
func main() {
r := dummyFetchUrl("http://www.google.com")
spew.Dump(r)
}