chore(*): add canonical import path annotation

https://golang.org/doc/go1.4#canonicalimports
pull/948/head
Adam Reese 9 years ago
parent 578ba71b10
commit a14e76a65c

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package main package main // import "k8s.io/helm/cmd/helm"
import ( import (
"errors" "errors"

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package main package main // import "k8s.io/helm/cmd/tiller"
import ( import (
"fmt" "fmt"

@ -41,4 +41,4 @@ into a Chart.
When creating charts in memory, use the 'k8s.io/helm/pkg/proto/happy/chart' When creating charts in memory, use the 'k8s.io/helm/pkg/proto/happy/chart'
package directly. package directly.
*/ */
package chartutil package chartutil // import "k8s.io/helm/pkg/chartutil"

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package client package client // import "k8s.io/helm/pkg/client"
import ( import (
"bytes" "bytes"

@ -20,4 +20,4 @@ Tiller provides a simple interface for taking a Chart and rendering its template
The 'engine' package implements this interface using Go's built-in 'text/template' The 'engine' package implements this interface using Go's built-in 'text/template'
package. package.
*/ */
package engine package engine // import "k8s.io/helm/pkg/engine"

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package helm package helm // import "k8s.io/helm/pkg/helm"
import ( import (
"google.golang.org/grpc" "google.golang.org/grpc"

@ -64,4 +64,4 @@ Notable differences from .gitignore:
- The evaluation of escape sequences has not been tested for compatibility - The evaluation of escape sequences has not been tested for compatibility
- There is no support for '\!' as a special leading sequence. - There is no support for '\!' as a special leading sequence.
*/ */
package ignore package ignore // import "k8s.io/helm/pkg/ignore"

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package kube package kube // import "k8s.io/helm/pkg/kube"
import ( import (
"fmt" "fmt"

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package lint package lint // import "k8s.io/helm/pkg/lint"
import ( import (
"path/filepath" "path/filepath"

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package rules package rules // import "k8s.io/helm/pkg/lint/rules"
import ( import (
"errors" "errors"

@ -19,4 +19,4 @@ limitations under the License.
Linting is the process of testing charts for errors or warnings regarding Linting is the process of testing charts for errors or warnings regarding
formatting, compilation, or standards compliance. formatting, compilation, or standards compliance.
*/ */
package support package support // import "k8s.io/helm/pkg/lint/support"

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
package repo package repo // import "k8s.io/helm/pkg/repo"
import ( import (
"crypto/sha1" "crypto/sha1"

@ -20,4 +20,4 @@ Tiller stores releases (see 'cmd/tiller/environment'.Environment). The backend
storage mechanism may be implemented with different backends. This package storage mechanism may be implemented with different backends. This package
and its subpackages provide storage layers for Tiller objects. and its subpackages provide storage layers for Tiller objects.
*/ */
package storage package storage // import "k8s.io/helm/pkg/storage"

@ -20,4 +20,4 @@ The gRPC/Protobuf libraries contain time implementations that require conversion
to and from Go times. This library provides utilities and convenience functions to and from Go times. This library provides utilities and convenience functions
for performing conversions. for performing conversions.
*/ */
package timeconv package timeconv // import "k8s.io/helm/pkg/timeconv"

@ -15,7 +15,7 @@ limitations under the License.
*/ */
// Package version represents the current version of the project. // Package version represents the current version of the project.
package version package version // import "k8s.io/helm/pkg/version"
// Version is the current version of the Helm. // Version is the current version of the Helm.
// Update this whenever making a new release. // Update this whenever making a new release.

Loading…
Cancel
Save