Version prints the service versions of all running instances.
(cfg *config.Config)
| 7 | |
| 8 | // Version prints the service versions of all running instances. |
| 9 | func Version(cfg *config.Config) *cobra.Command { |
| 10 | return &cobra.Command{ |
| 11 | Use: "version", |
| 12 | Short: "print the version of this binary and the running extension instances", |
| 13 | RunE: func(cmd *cobra.Command, args []string) error { |
| 14 | // not implemented |
| 15 | return nil |
| 16 | }, |
| 17 | } |
| 18 | } |