summaryrefslogtreecommitdiff
path: root/plugins/checker/interface.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/checker/interface.go')
-rw-r--r--plugins/checker/interface.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/checker/interface.go b/plugins/checker/interface.go
deleted file mode 100644
index dd9dcada..00000000
--- a/plugins/checker/interface.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package checker
-
-// Status consists of status code from the service
-type Status struct {
- Code int
-}
-
-// Checker interface used to get latest status from plugin
-type Checker interface {
- Status() Status
-}