in plugins/plugins.go [60:67]
func (t *Timeout) Check() { if t.enabled && t.ticking { if t.stopTime.Before(time.Now()) { // run the timeout function t.timeoutFunc(t.duration) } } }