You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
460 B

package v2
import "time"
type Event interface{}
type Events []Event
type testEvent struct {
msg string
time time.Time
}
type testEventTwo struct {
msg string
}
type stopEvent struct{}
type timeCheck struct {
time time.Time
}
type errEvent struct{}
type scTestEvent struct{}
type pcFinished struct{}
type routineFinished struct{}
func (rf *routineFinished) Error() string {
return "routine finished"
}
type scFull struct{}
type pcFull struct{}