6 lines
95 B
Go
6 lines
95 B
Go
package interfaces
|
|
|
|
type EndableStarter interface {
|
|
EndableStart(endded chan<- error) error
|
|
}
|