()
| 12 | ) |
| 13 | |
| 14 | func Run() cli.Command { |
| 15 | r := runCmd{} |
| 16 | |
| 17 | return cli.Command{ |
| 18 | Name: "run", |
| 19 | Usage: "run a function locally", |
| 20 | ArgsUsage: "[username/image:tag]", |
| 21 | Flags: append(Runflags(), []cli.Flag{}...), |
| 22 | Action: r.run, |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | type runCmd struct{} |
| 27 |
nothing calls this directly
no test coverage detected