mirror of
https://github.com/aceld/kis-flow.git
synced 2025-02-02 15:28:38 +08:00
12 lines
208 B
Go
12 lines
208 B
Go
package kis
|
|
|
|
import (
|
|
"kis-flow/common"
|
|
"reflect"
|
|
)
|
|
|
|
type FaasSerialize interface {
|
|
DecodeParam(common.KisRowArr, reflect.Type) (reflect.Value, error)
|
|
EncodeParam(interface{}) (common.KisRowArr, error)
|
|
}
|