diff options
Diffstat (limited to 'internal/omode')
| -rw-r--r-- | internal/omode/mode.go | 6 |
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" } |
