Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add canonical import paths #15

Merged
merged 1 commit into from
Mar 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bytereplacer/bytereplacer.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

// Package bytereplacer provides a utility for replacing parts of byte slices.
package bytereplacer
package bytereplacer // import "go4.org/bytereplacer"

import "bytes"

Expand Down
2 changes: 1 addition & 1 deletion cloud/cloudlaunch/cloudlaunch.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

// Package cloudlaunch helps binaries run themselves on The Cloud, copying
// themselves to GCE.
package cloudlaunch
package cloudlaunch // import "go4.org/cloud/cloudlaunch"

import (
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion cloud/google/gceutil/gceutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

// Package gceutil provides utility functions to help with instances on
// Google Compute Engine.
package gceutil
package gceutil // import "go4.org/cloud/google/gceutil"

import (
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion cloud/google/gcsutil/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

// Package gcsutil provides tools for accessing Google Cloud Storage until they can be
// completely replaced by google.golang.org/cloud/storage.
package gcsutil
package gcsutil // import "go4.org/cloud/google/gcsutil"

import (
"encoding/xml"
Expand Down
2 changes: 1 addition & 1 deletion ctxutil/ctxutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

// Package ctxutil contains golang.org/x/net/context related utilities.
package ctxutil
package ctxutil // import "go4.org/ctxutil"

import (
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion errorutil/highlight.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

// Package errorutil helps make better error messages.
package errorutil
package errorutil // import "go4.org/errorutil"

import (
"bufio"
Expand Down
2 changes: 1 addition & 1 deletion fault/fault.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

// Package fault handles fault injection for testing.
package fault
package fault // import "go4.org/fault"

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion jsonconfig/jsonconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

// Package jsonconfig defines a helper type for JSON objects to be
// used for configuration.
package jsonconfig
package jsonconfig // import "go4.org/jsonconfig"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion legal/legal.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

// Package legal provides in-process storage for compiled-in licenses.
package legal
package legal // import "go4.org/legal"

var licenses []string

Expand Down
2 changes: 1 addition & 1 deletion lock/lock.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

// Package lock is a file locking library.
package lock
package lock // import "go4.org/lock"

import (
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion oauthutil/oauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

// Package oauthutil contains OAuth 2 related utilities.
package oauthutil
package oauthutil // import "go4.org/oauthutil"

import (
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion syncutil/syncdebug/syncdebug.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

// Package syncdebug contains facilities for debugging synchronization
// problems.
package syncdebug
package syncdebug // import "go4.org/syncutil/syncdebug"

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

// Package types provides various common types.
package types
package types // import "go4.org/types"

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion wkfs/gcs/gcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
//
// It was initially only meant for small files, and as such, it can only
// read files smaller than 1MB for now.
package gcs
package gcs // import "go4.org/wkfs/gcs"

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion wkfs/wkfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ limitations under the License.
// Example of top-level well-known directories that might be
// registered include /gcs/bucket/object for Google Cloud Storage or
// /s3/bucket/object for AWS S3.
package wkfs
package wkfs // import "go4.org/wkfs"

import (
"io"
Expand Down