cmd/acr/main.go (8 lines of code) (raw):

// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. package main import "os" // The function of the main method is just to launch the root cobra command which is // used to launch the other commands. func main() { cmd := newRootCmd(os.Args[1:]) if err := cmd.Execute(); err != nil { os.Exit(1) } }