8 lines
111 B
Go
8 lines
111 B
Go
package srun
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrResultCannotFound = errors.New("result cannot found from response")
|
|
)
|