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