mirror of
https://gitea.plemya-x.ru/Plemya-x/ALR.git
synced 2025-01-10 17:26:45 +00:00
46 lines
853 B
Go
46 lines
853 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/urfave/cli/v2"
|
||
|
"lure.sh/lure/pkg/gen"
|
||
|
)
|
||
|
|
||
|
var genCmd = &cli.Command{
|
||
|
Name: "generate",
|
||
|
Usage: "Generate a LURE script from a template",
|
||
|
Aliases: []string{"gen"},
|
||
|
Subcommands: []*cli.Command{
|
||
|
genPipCmd,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
var genPipCmd = &cli.Command{
|
||
|
Name: "pip",
|
||
|
Usage: "Generate a LURE script for a pip module",
|
||
|
Flags: []cli.Flag{
|
||
|
&cli.StringFlag{
|
||
|
Name: "name",
|
||
|
Aliases: []string{"n"},
|
||
|
Required: true,
|
||
|
},
|
||
|
&cli.StringFlag{
|
||
|
Name: "version",
|
||
|
Aliases: []string{"v"},
|
||
|
Required: true,
|
||
|
},
|
||
|
&cli.StringFlag{
|
||
|
Name: "description",
|
||
|
Aliases: []string{"d"},
|
||
|
},
|
||
|
},
|
||
|
Action: func(c *cli.Context) error {
|
||
|
return gen.Pip(os.Stdout, gen.PipOptions{
|
||
|
Name: c.String("name"),
|
||
|
Version: c.String("version"),
|
||
|
Description: c.String("description"),
|
||
|
})
|
||
|
},
|
||
|
}
|