Skip to content

Commit fbd45b3

Browse files
committed
Update library for new Shyp import path
1 parent 4f844a6 commit fbd45b3

File tree

5 files changed

+5
-11
lines changed

5 files changed

+5
-11
lines changed

BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_prefix", "go_test")
22

3-
go_prefix("github.com/kevinburke/rest")
3+
go_prefix("github.com/Shyp/rest")
44

55
go_library(
66
name = "go_default_library",

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016 Shyp, Inc.
1+
Copyright (c) 2018 Shyp, Inc.
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,4 @@ client := http.Client{
4444
}
4545
```
4646

47-
## Donating
48-
49-
Donations free up time to make improvements to the library, and respond to
50-
bug reports. You can send donations via Paypal's "Send Money" feature to
51-
[email protected]. Donations are not tax deductible in the USA.
52-
53-
[gddo]: https://godoc.org/github.com/kevinburke/rest
47+
[gddo]: https://godoc.org/github.com/Shyp/rest

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var ua string
2929

3030
func init() {
3131
gv := strings.Replace(runtime.Version(), "go", "", 1)
32-
ua = fmt.Sprintf("rest-client/%s (https://github.com/kevinburke/rest) go/%s (%s/%s)",
32+
ua = fmt.Sprintf("rest-client/%s (https://github.com/Shyp/rest) go/%s (%s/%s)",
3333
Version, gv, runtime.GOOS, runtime.GOARCH)
3434
}
3535

example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"net/http/httptest"
1212
"strings"
1313

14-
"github.com/kevinburke/rest"
14+
"github.com/Shyp/rest"
1515
)
1616

1717
func ExampleRegisterHandler() {

0 commit comments

Comments
 (0)