func()

in ops/ops.go [94:99]


func (o Operative) GetValue() (any, error) {
	if err := isErrorOrNotExist(o); err != nil {
		return nil, err
	}
	return o.Actual, nil
}