nfsense/internal/jsonrpc/method.go
2023-03-26 18:50:18 +02:00

10 lines
164 B
Go

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