diff options
Diffstat (limited to 'examples/fetch')
-rw-r--r-- | examples/fetch/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/fetch/main.go b/examples/fetch/main.go index 109a042..fccc6cf 100644 --- a/examples/fetch/main.go +++ b/examples/fetch/main.go @@ -8,8 +8,8 @@ import ( "os" "strings" - "tildegit.org/tjp/gus" - "tildegit.org/tjp/gus/gemini" + sr "tildegit.org/tjp/sliderule" + "tildegit.org/tjp/sliderule/gemini" ) func main() { @@ -30,7 +30,7 @@ func main() { } // parse the URL and build the request - request := &gus.Request{URL: buildURL()} + request := &sr.Request{URL: buildURL()} // fetch the response response, err := client.RoundTrip(request) |