mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
15 lines
205 B
Go
15 lines
205 B
Go
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/anchore/imgbom/internal/log"
|
|
)
|
|
|
|
func Execute() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
log.Errorf("could not start application: %w", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|