kis-flow/kis/serialize.go

12 lines
208 B
Go
Raw Normal View History

2024-03-19 19:16:03 +08:00
package kis
import (
"kis-flow/common"
"reflect"
)
type FaasSerialize interface {
DecodeParam(common.KisRowArr, reflect.Type) (reflect.Value, error)
EncodeParam(interface{}) (common.KisRowArr, error)
}