summaryrefslogtreecommitdiff
path: root/internal/omode
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2021-10-15 12:38:39 +0300
committerPaul Buetow <pbuetow@mimecast.com>2021-10-15 12:38:39 +0300
commit1edc1469024d3cb74473bd99959d5d1068229c39 (patch)
tree72618e384626d9fc368994e3f24be9e9892d0610 /internal/omode
parent4e1b7f6ff7e3f10bda852da90f7b62d5dbccd455 (diff)
parentc0332e8fa13f4939de17c856b2e71fd093847253 (diff)
merge from github.com/snonux/dtail
Diffstat (limited to 'internal/omode')
-rw-r--r--internal/omode/mode.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/internal/omode/mode.go b/internal/omode/mode.go
index e29aacc..1aafcfc 100644
--- a/internal/omode/mode.go
+++ b/internal/omode/mode.go
@@ -12,7 +12,6 @@ const (
GrepClient Mode = iota
MapClient Mode = iota
HealthClient Mode = iota
- RunClient Mode = iota
)
func (m Mode) String() string {
@@ -29,8 +28,6 @@ func (m Mode) String() string {
return "map"
case HealthClient:
return "health"
- case RunClient:
- return "run"
default:
return "unknown"
}