()
| 27 | ) |
| 28 | |
| 29 | func main() { |
| 30 | cmd := &cobra.Command{ |
| 31 | Short: "Compose Provider Example", |
| 32 | Use: "demo", |
| 33 | } |
| 34 | cmd.AddCommand(composeCommand()) |
| 35 | err := cmd.Execute() |
| 36 | if err != nil { |
| 37 | fmt.Fprintln(os.Stderr, err) |
| 38 | os.Exit(1) |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | type options struct { |
| 43 | db string |
nothing calls this directly
no test coverage detected