summaryrefslogtreecommitdiff
path: root/plugins/status/interface.go
blob: 0a92bc521d7a7337b567d5bcd7aaff7a8f5ebed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
}