github.com/cilium/cilium@v1.16.2/tools/dev-doctor/main.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  // Command doctor checks the development setup for common problems.
     5  package main
     6  
     7  import (
     8  	"fmt"
     9  	"os"
    10  )
    11  
    12  func main() {
    13  	if err := rootCmd.Execute(); err != nil {
    14  		fmt.Println(err)
    15  		os.Exit(1)
    16  	}
    17  }