blob: e72f7920fa02412829e3cf54ac63cd3e8df4fce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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}
}
|