mirror of
https://github.com/wonli/aqi.git
synced 2025-09-26 20:51:23 +08:00
15 lines
186 B
Go
15 lines
186 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "aqi",
|
|
Short: "AQI Project Generator",
|
|
}
|
|
|
|
func Execute() {
|
|
cobra.CheckErr(rootCmd.Execute())
|
|
}
|