...

/

Navigating the New Cobra Application

Navigating the New Cobra Application

Learn about the Cobra application and its components.

Creating the main.go file

Cobra structures our application by creating a simple main.go file that only imports the package cmd and executes the application. The main.go file looks like this:

/*
Copyright © 2020 The Pragmatic Programmers, LLC
Copyrights apply to this source code.
Check LICENSE for details.
*/
package main
import "pragprog.com/rggo/cobra/pScan/cmd"
func main() {
cmd.Execute()
}
Creating the main.go file

The core functionality of our application resides in the cmd package. When we run the command, the main() function calls cmd.Execute() to execute the root command of our application. We can find this function and the general structure of the program in the cmd/root.go file. The Execute() function executes the rootCmd.Execute() method on an instance of the cobra.Command type:

...