mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-27 00:00:49 -05:00
19 lines
386 B
Go
19 lines
386 B
Go
package command
|
|
|
|
import (
|
|
"github.com/opencloud-eu/opencloud/services/postprocessing/pkg/config"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Health is the entrypoint for the health command.
|
|
func Health(cfg *config.Config) *cli.Command {
|
|
return &cli.Command{
|
|
Name: "health",
|
|
Usage: "Check health status",
|
|
Action: func(c *cli.Context) error {
|
|
// Not implemented
|
|
return nil
|
|
},
|
|
}
|
|
}
|