Skip to content

Commit bdaed05

Browse files
committed
Change package name
1 parent ae3cf3c commit bdaed05

File tree

978 files changed

+3294
-3292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

978 files changed

+3294
-3292
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Go Tools
22

3-
[![PkgGoDev](https://pkg.go.dev/badge/golang.org/x/tools)](https://pkg.go.dev/golang.org/x/tools)
3+
[![PkgGoDev](https://pkg.go.dev/badge/github.com/onboard-inc/golang-tools)](https://pkg.go.dev/golang.org/x/tools)
44

5-
This repository provides the `golang.org/x/tools` module, comprising
5+
This repository provides the `github.com/onboard-inc/golang-tools` module, comprising
66
various tools and packages mostly for static analysis of Go programs,
77
some of which are listed below.
88
Use the "Go reference" link above for more information about any package.
99

1010
It also contains the
11-
[`golang.org/x/tools/gopls`](https://pkg.go.dev/golang.org/x/tools/gopls)
11+
[`github.com/onboard-inc/golang-tools/gopls`](https://pkg.go.dev/golang.org/x/tools/gopls)
1212
module, whose root package is a language-server protocol (LSP) server for Go.
1313
An LSP server analyses the source code of a project and
1414
responds to requests from a wide range of editors such as VSCode and
@@ -28,7 +28,7 @@ Selected commands:
2828

2929
These commands may be fetched with a command such as
3030
```
31-
go install golang.org/x/tools/cmd/goimports@latest
31+
go install github.com/onboard-inc/golang-tools/cmd/goimports@latest
3232
```
3333

3434
Selected packages:
@@ -64,15 +64,15 @@ Numerous other packages provide more esoteric functionality.
6464

6565
<!-- Some that didn't make the cut:
6666
67-
golang.org/x/tools/benchmark/parse
68-
golang.org/x/tools/go/ast/astutil
69-
golang.org/x/tools/go/types/typeutil
70-
golang.org/x/tools/playground
71-
golang.org/x/tools/present
72-
golang.org/x/tools/refactor/importgraph
73-
golang.org/x/tools/refactor/rename
74-
golang.org/x/tools/refactor/satisfy
75-
golang.org/x/tools/txtar
67+
github.com/onboard-inc/golang-tools/benchmark/parse
68+
github.com/onboard-inc/golang-tools/go/ast/astutil
69+
github.com/onboard-inc/golang-tools/go/types/typeutil
70+
github.com/onboard-inc/golang-tools/playground
71+
github.com/onboard-inc/golang-tools/present
72+
github.com/onboard-inc/golang-tools/refactor/importgraph
73+
github.com/onboard-inc/golang-tools/refactor/rename
74+
github.com/onboard-inc/golang-tools/refactor/satisfy
75+
github.com/onboard-inc/golang-tools/txtar
7676
7777
-->
7878

benchmark/parse/parse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// Package parse provides support for parsing benchmark results as
66
// generated by 'go test -bench'.
7-
package parse // import "golang.org/x/tools/benchmark/parse"
7+
package parse // import "github.com/onboard-inc/golang-tools/benchmark/parse"
88

99
import (
1010
"bufio"

blog/atom/atom.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Adapted from encoding/xml/read_test.go.
66

77
// Package atom defines XML data structures for an Atom feed.
8-
package atom // import "golang.org/x/tools/blog/atom"
8+
package atom // import "github.com/onboard-inc/golang-tools/blog/atom"
99

1010
import (
1111
"encoding/xml"

blog/blog.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
// Package blog implements a web server for articles written in present format.
6-
package blog // import "golang.org/x/tools/blog"
6+
package blog // import "github.com/onboard-inc/golang-tools/blog"
77

88
import (
99
"bytes"
@@ -20,8 +20,8 @@ import (
2020
"strings"
2121
"time"
2222

23-
"golang.org/x/tools/blog/atom"
24-
"golang.org/x/tools/present"
23+
"github.com/onboard-inc/golang-tools/blog/atom"
24+
"github.com/onboard-inc/golang-tools/present"
2525
)
2626

2727
var (

cmd/benchcmp/benchcmp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"strconv"
1313
"text/tabwriter"
1414

15-
"golang.org/x/tools/benchmark/parse"
15+
"github.com/onboard-inc/golang-tools/benchmark/parse"
1616
)
1717

1818
var (

cmd/benchcmp/benchcmp_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"reflect"
99
"testing"
1010

11-
"golang.org/x/tools/benchmark/parse"
11+
"github.com/onboard-inc/golang-tools/benchmark/parse"
1212
)
1313

1414
func TestSelectBest(t *testing.T) {

cmd/benchcmp/compare.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"math"
1010

11-
"golang.org/x/tools/benchmark/parse"
11+
"github.com/onboard-inc/golang-tools/benchmark/parse"
1212
)
1313

1414
// BenchCmp is a pair of benchmarks.

cmd/benchcmp/compare_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sort"
1111
"testing"
1212

13-
"golang.org/x/tools/benchmark/parse"
13+
"github.com/onboard-inc/golang-tools/benchmark/parse"
1414
)
1515

1616
func TestDelta(t *testing.T) {

cmd/benchcmp/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ in a format like this:
3434
benchmark old bytes new bytes delta
3535
BenchmarkConcat 80 48 -40.00%
3636
*/
37-
package main // import "golang.org/x/tools/cmd/benchcmp"
37+
package main // import "github.com/onboard-inc/golang-tools/cmd/benchcmp"

cmd/bisect/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// arguments. For each change that matches the pattern, the target must
2626
// enable that change and also print one or more “match lines”
2727
// (to standard output or standard error) describing the change.
28-
// The [golang.org/x/tools/internal/bisect] package provides functions to help
28+
// The [github.com/onboard-inc/golang-tools/internal/bisect] package provides functions to help
2929
// targets implement this protocol. We plan to publish that package
3030
// in a non-internal location after finalizing its API.
3131
//
@@ -145,7 +145,7 @@ import (
145145
"strings"
146146
"time"
147147

148-
"golang.org/x/tools/internal/bisect"
148+
"github.com/onboard-inc/golang-tools/internal/bisect"
149149
)
150150

151151
// Preserve import of bisect, to allow [bisect.Match] in the doc comment.

0 commit comments

Comments
 (0)