...

Source file src/sigs.k8s.io/kustomize/api/main.go

Documentation: sigs.k8s.io/kustomize/api

     1  // Copyright 2019 The Kubernetes Authors.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  // A dummy main to help with releasing the kustomize API module.
     5  package main
     6  
     7  import (
     8  	"fmt"
     9  
    10  	"sigs.k8s.io/kustomize/api/provenance"
    11  )
    12  
    13  // TODO: delete this when we find a better way to generate release notes.
    14  func main() {
    15  	fmt.Println(`This 'main' exists only to create release notes for the API.`)
    16  	fmt.Println(provenance.GetProvenance())
    17  }
    18  

View as plain text