Files
BitSrunLoginGo/pkg/srun/errors.go
2024-01-01 17:56:06 +08:00

10 lines
216 B
Go

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