-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy pathroot.go
More file actions
41 lines (36 loc) · 1017 Bytes
/
root.go
File metadata and controls
41 lines (36 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "apiviewgo <moduleDir> <outputDir>",
Long: `apiviewgo outputs a file representing the public API of an Azure SDK for Go
module in APIView format. It writes this file to <outputDir>/<module name>.json,
overwriting any file of the same name.`,
Run: func(cmd *cobra.Command, args []string) {
if len(args) != 2 {
err := cmd.Help()
if err != nil {
fmt.Println(err)
}
return
}
err := CreateAPIView(args[0], args[1])
if err != nil {
fmt.Println(err)
}
},
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}