Add documentation for kind string constants

Signed-off-by: Philip Laine <philip.laine@xenit.se>
This commit is contained in:
Philip Laine 2020-10-31 21:49:19 +01:00
parent c0ee546ce8
commit 0596513afd
3 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import (
)
const (
// BucketKind is the string representation of a Bucket.
BucketKind = "Bucket"
)

View File

@ -23,6 +23,7 @@ import (
)
const (
// GitRepositoryKind is the string representation of a GitRepository.
GitRepositoryKind = "GitRepository"
)

View File

@ -22,6 +22,7 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// HelmChartKind is the string representation of a HelmChart.
const HelmChartKind = "HelmChart"
// HelmChartSpec defines the desired state of a Helm chart.