mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-25 07:08:47 -05:00
19 lines
469 B
Go
19 lines
469 B
Go
package command
|
|
|
|
import (
|
|
"github.com/opencloud-eu/opencloud/services/postprocessing/pkg/config"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Version prints the service versions of all running instances.
|
|
func Version(cfg *config.Config) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "version",
|
|
Short: "print the version of this binary and the running extension instances",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
// not implemented
|
|
return nil
|
|
},
|
|
}
|
|
}
|