Files
opencloud/extensions/audit/pkg/command/health.go
Christian Richter 725d55b494 refactor audit
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-04-13 17:04:38 +02:00

19 lines
370 B
Go

package command
import (
"github.com/owncloud/ocis/extensions/audit/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
},
}
}