summaryrefslogtreecommitdiff
path: root/examples/fetch/main.go
diff options
context:
space:
mode:
authortjpcc <tjp@ctrl-c.club>2023-05-01 07:56:25 -0600
committertjpcc <tjp@ctrl-c.club>2023-05-01 07:56:25 -0600
commit9a2da81b11ad0064cca24ce7974827d032309369 (patch)
tree4313224dc089208423e78bffc3ec50833e35bcea /examples/fetch/main.go
parent21e2758145d100d74013060f7090d84679cae683 (diff)
name change gus -> sliderule
Diffstat (limited to 'examples/fetch/main.go')
-rw-r--r--examples/fetch/main.go6
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)