AllowFailure nil

This commit is contained in:
ziyeziye 2023-12-11 18:14:19 +08:00
parent 019903a6ac
commit 07b7d5b7f3

View file

@ -74,6 +74,9 @@ func (call *Call) SetExtend(ext any) *Call {
}
func (call *Call) UnpackResult() []interface{} {
if call.Outputs == nil {
return nil
}
return call.Outputs.([]interface{})
}