blob: dd9dcada6601294522a3f728c3550e5f2d31be8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
}
|