Merge pull request #948 from adamreese/chore/canonical-import

chore(*): add canonical import path annotation
pull/952/head
Adam Reese 8 years ago committed by GitHub
commit e83a185183

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

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

@ -41,4 +41,4 @@ into a Chart.
When creating charts in memory, use the 'k8s.io/helm/pkg/proto/happy/chart'
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.
*/
package client
package client // import "k8s.io/helm/pkg/client"
import (
"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'
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.
*/
package helm
package helm // import "k8s.io/helm/pkg/helm"
import (
"google.golang.org/grpc"

@ -64,4 +64,4 @@ Notable differences from .gitignore:
- The evaluation of escape sequences has not been tested for compatibility
- 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.
*/
package kube
package kube // import "k8s.io/helm/pkg/kube"
import (
"fmt"

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

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

@ -19,4 +19,4 @@ limitations under the License.
Linting is the process of testing charts for errors or warnings regarding
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.
*/
package repo
package repo // import "k8s.io/helm/pkg/repo"
import (
"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
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
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
package version // import "k8s.io/helm/pkg/version"
// Version is the current version of the Helm.
// Update this whenever making a new release.

Loading…
Cancel
Save