aboutsummaryrefslogtreecommitdiffstats
path: root/_examples/custom_http
diff options
context:
space:
mode:
Diffstat (limited to '_examples/custom_http')
-rw-r--r--_examples/custom_http/main.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/_examples/custom_http/main.go b/_examples/custom_http/main.go
index f584da2..0d45080 100644
--- a/_examples/custom_http/main.go
+++ b/_examples/custom_http/main.go
@@ -7,11 +7,11 @@ import (
"os"
"time"
- "srcd.works/go-git.v4"
- . "srcd.works/go-git.v4/_examples"
- "srcd.works/go-git.v4/plumbing/transport/client"
- githttp "srcd.works/go-git.v4/plumbing/transport/http"
- "srcd.works/go-git.v4/storage/memory"
+ "gopkg.in/src-d/go-git.v4"
+ . "gopkg.in/src-d/go-git.v4/_examples"
+ "gopkg.in/src-d/go-git.v4/plumbing/transport/client"
+ githttp "gopkg.in/src-d/go-git.v4/plumbing/transport/http"
+ "gopkg.in/src-d/go-git.v4/storage/memory"
)
// Here is an example to configure http client according to our own needs.