Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
7 lines (5 sloc) 141 Bytes
package dockerinitiator
//Probe provides an interface for the probing mechanism
type Probe interface {
DoProbe(instance *Instance) error
}