overflow_discovery/commons/endable_starter.go

6 lines
92 B
Go
Raw Permalink Normal View History

2017-10-20 05:28:07 +00:00
package commons
type EndableStarter interface {
EndableStart(endded chan<- error) error
}