github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/benchmark/cmd/main.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"os"
     6  
     7  	"github.com/fatih/color"
     8  	"github.com/pyroscope-io/pyroscope/benchmark/cmd/command"
     9  )
    10  
    11  func main() {
    12  	if err := command.Initialize(); err != nil {
    13  		fmt.Fprintf(os.Stderr, "%s %v\n\n", color.RedString("Error:"), err)
    14  		os.Exit(1)
    15  	}
    16  }