summaryrefslogtreecommitdiff
path: root/plugins/status/interface.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/status/interface.go')
-rw-r--r--plugins/status/interface.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/plugins/status/interface.go b/plugins/status/interface.go
deleted file mode 100644
index 9d5a13af..00000000
--- a/plugins/status/interface.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package status
-
-// 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
-}
-
-// Readiness interface used to get readiness status from the plugin
-// that means, that worker poll inside the plugin has 1+ plugins which are ready to work
-// at the particular moment
-type Readiness interface {
- Ready() Status
-}