Skip to content

Commit 484ab54

Browse files
committed
*: update import paths to "go.etcd.io"
Signed-off-by: Gyuho Lee <[email protected]>
1 parent de1f9b8 commit 484ab54

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
21
language: go
2+
go_import_path: go.etcd.io/protodoc
33

44
sudo: false
55

66
go:
7-
- 1.10.3
7+
- 1.11
88

99
script:
10-
- ./test
11-
10+
- ./test

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
protodoc generates Protocol Buffer documentation.
77

88
```
9-
go get -v -u github.com/etcd-io/protodoc
9+
go get -v -u go.etcd.io/protodoc
1010
1111
protodoc --directory=./parse/testdata \
1212
--parse="service,message" \
@@ -27,4 +27,4 @@ of Protocol Buffer (just enough to generate documentation).
2727
For full featured parser, please check out https://github.com/golang/protobuf.
2828

2929
[cistat]: https://travis-ci.com/etcd-io/protodoc
30-
[protodoc-godoc]: https://godoc.org/github.com/etcd-io/protodoc
30+
[protodoc-godoc]: https://godoc.org/go.etcd.io/protodoc

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"path/filepath"
3838
"strings"
3939

40-
"github.com/etcd-io/protodoc/parse"
40+
"go.etcd.io/protodoc/parse"
4141

4242
"github.com/spf13/cobra"
4343
)

0 commit comments

Comments
 (0)