mirror of
https://github.com/aceld/kis-flow.git
synced 2025-01-23 07:30:23 +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)
|
||
|
}
|