mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 10:15:22 +00:00
* Pin tool versions with hack/go.mod This change centralizes the tracking of versions for tools used for development and testing. This way, the tools and all their dependencies have their checksums stored in hack/go.sum, which improves supply chain security. * Workspace Sync & Tidy
18 lines
429 B
Go
18 lines
429 B
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// A dummy main to help with releasing the kustomize API module.
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"sigs.k8s.io/kustomize/api/provenance"
|
|
)
|
|
|
|
// TODO: delete this when we find a better way to generate release notes.
|
|
func main() {
|
|
fmt.Println(`This 'main' exists only to create release notes for the API.`)
|
|
fmt.Println(provenance.GetProvenance())
|
|
}
|