summaryrefslogtreecommitdiff
path: root/internal/omode/mode.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/omode/mode.go')
-rw-r--r--internal/omode/mode.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/omode/mode.go b/internal/omode/mode.go
index 57366d2..e29aacc 100644
--- a/internal/omode/mode.go
+++ b/internal/omode/mode.go
@@ -12,7 +12,7 @@ const (
GrepClient Mode = iota
MapClient Mode = iota
HealthClient Mode = iota
- ExecClient Mode = iota
+ RunClient Mode = iota
)
func (m Mode) String() string {
@@ -29,8 +29,8 @@ func (m Mode) String() string {
return "map"
case HealthClient:
return "health"
- case ExecClient:
- return "exec"
+ case RunClient:
+ return "run"
default:
return "unknown"
}