mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-01 18:01:28 -06:00
19 lines
405 B
Go
19 lines
405 B
Go
package command
|
|
|
|
import (
|
|
"github.com/opencloud-eu/opencloud/services/postprocessing/pkg/config"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Health is the entrypoint for the health command.
|
|
func Health(cfg *config.Config) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "health",
|
|
Short: "Check health status",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
// Not implemented
|
|
return nil
|
|
},
|
|
}
|
|
}
|