Files
BitSrunLoginGo/pkg/srun/errors.go
2023-06-04 21:02:23 +08:00

9 lines
164 B
Go

package srun
import "errors"
var (
ErrResultCannotFound = errors.New("result cannot found from response")
ErrAcidCannotFound = errors.New("acid not found")
)