diff options
Diffstat (limited to 'cmd/check/command/command.go')
-rw-r--r-- | cmd/check/command/command.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cmd/check/command/command.go b/cmd/check/command/command.go new file mode 100644 index 0000000..f260681 --- /dev/null +++ b/cmd/check/command/command.go @@ -0,0 +1,21 @@ +package command + +import ( + "gitlab.com/gitlab-org/gitlab-shell/internal/command" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/healthcheck" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/shared/disallowedcommand" + "gitlab.com/gitlab-org/gitlab-shell/internal/config" +) + +func New(config *config.Config, readWriter *readwriter.ReadWriter) (command.Command, error) { + if cmd := build(config, readWriter); cmd != nil { + return cmd, nil + } + + return nil, disallowedcommand.Error +} + +func build(config *config.Config, readWriter *readwriter.ReadWriter) command.Command { + return &healthcheck.Command{Config: config, ReadWriter: readWriter} +} |