github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/testsummary/cmd/main.go (about)

     1  package main
     2  
     3  import (
     4  	"log"
     5  	"os"
     6  
     7  	"github.com/spf13/cobra"
     8  
     9  	"github.com/smartcontractkit/chainlink-testing-framework/libs/testsummary/cmd/internal"
    10  )
    11  
    12  var rootCmd = &cobra.Command{
    13  	Use:   "test-summary",
    14  	Short: "Tests summary printer",
    15  }
    16  
    17  func init() {
    18  	rootCmd.AddCommand(internal.PrintKeyCmd)
    19  }
    20  
    21  func main() {
    22  	if err := rootCmd.Execute(); err != nil {
    23  		log.Println(err)
    24  		os.Exit(1)
    25  	}
    26  }