(Feat): Initial Commit
This commit is contained in:
17
cmd/probe/probe.go
Normal file
17
cmd/probe/probe.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package probe
|
||||
|
||||
import (
|
||||
"allaboutapps.dev/aw/go-starter/internal/util/command"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
const (
|
||||
verboseFlag string = "verbose"
|
||||
)
|
||||
|
||||
func New() *cobra.Command {
|
||||
return command.NewSubcommandGroup("probe",
|
||||
newLiveness(),
|
||||
newReadiness(),
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user