6 lines
95 B
Go
Raw Normal View History

2018-03-26 12:34:32 +09:00
package interfaces
type EndableStarter interface {
EndableStart(endded chan<- error) error
}