mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 19:08:20 +00:00
10 lines
164 B
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
|
|
}
|