nfsense/pkg/jsonrpc/method.go

10 lines
164 B
Go

package jsonrpc
import "reflect"
type method struct {
subSystem reflect.Value
handlerFunc reflect.Value
inType reflect.Type
outType reflect.Type
}