(cmd string, args ...string)
| 408 | } |
| 409 | |
| 410 | func NewCommandWithoutEntrypoint(cmd string, args ...string) *Command { |
| 411 | return &Command{ |
| 412 | cmd: cmd, |
| 413 | args: args, |
| 414 | entrypointDisabled: true, |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | type ReadinessProbe interface { |
| 419 | Ready(service *ConcreteService) (err error) |
no outgoing calls
no test coverage detected