-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
45 lines (41 loc) · 862 Bytes
/
main.go
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
42
43
44
45
package main
import (
"fmt"
"os"
"runtime"
"github.com/1278651995/zero-goctl-swagger/action"
"github.com/urfave/cli/v2"
)
var (
version = "20210116"
commands = []*cli.Command{
{
Name: "swagger",
Usage: "generates swagger.json",
Action: action.Generator,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "host",
Usage: "api request address",
},
&cli.StringFlag{
Name: "basepath",
Usage: "url request prefix",
},
&cli.StringFlag{
Name: "filename",
Usage: "swagger save file name",
},
},
},
}
)
func main() {
app := cli.NewApp()
app.Usage = "a plugin of goctl to generate swagger.json"
app.Version = fmt.Sprintf("%s %s/%s", version, runtime.GOOS, runtime.GOARCH)
app.Commands = commands
if err := app.Run(os.Args); err != nil {
fmt.Printf("goctl-swagger: %+v\n", err)
}
}