summaryrefslogtreecommitdiff
path: root/internal/omode
diff options
context:
space:
mode:
authorPaul Buetow <35781042+pbuetow@users.noreply.github.com>2020-12-27 19:46:24 +0000
committerGitHub <noreply@github.com>2020-12-27 19:46:24 +0000
commit495e9f38220a6d448b15882a235e7a9c21f21d18 (patch)
tree5b59cade83108c1855d07f1f869a0dcb3b9f0907 /internal/omode
parentb4db37d8cbae8f0c3dec289b2e1b0cfe83731415 (diff)
parent2c7bdd09e8b7c58d98d631e32a24e4bd34d5bec9 (diff)
Merge pull request #16 from snonux/develop
Multiple minor enhancements.
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"
}