()
| 89 | } |
| 90 | |
| 91 | func newCommunityScriptsShowCmd() *cobra.Command { |
| 92 | return &cobra.Command{ |
| 93 | Use: "show <slug-or-name>", |
| 94 | Short: "Show details for a community script", |
| 95 | Example: ` pvetui community-scripts show nextcloud |
| 96 | pvetui community-scripts show "Home Assistant" --output table`, |
| 97 | Args: cobra.ExactArgs(1), |
| 98 | RunE: runCommunityScriptsShow, |
| 99 | ValidArgsFunction: completeCommunityScriptSlugs, |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | func newCommunityScriptsInstallCmd() *cobra.Command { |
| 104 | cmd := &cobra.Command{ |
no outgoing calls
no test coverage detected