()
| 78 | } |
| 79 | |
| 80 | func newCommunityScriptsSearchCmd() *cobra.Command { |
| 81 | return &cobra.Command{ |
| 82 | Use: "search <query>", |
| 83 | Short: "Search available community scripts", |
| 84 | Example: ` pvetui community-scripts search nextcloud |
| 85 | pvetui community-scripts search docker --output table`, |
| 86 | Args: cobra.ExactArgs(1), |
| 87 | RunE: runCommunityScriptsSearch, |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | func newCommunityScriptsShowCmd() *cobra.Command { |
| 92 | return &cobra.Command{ |
no outgoing calls
no test coverage detected