Files
moxa/stdlib/go1_16_net_rpc_jsonrpc.go
Nicholas Wiersma 32cbcfb412 feat: update stdlib mapping for go1.17
* Drop go1.15
* Generate go1.17
* Update minimum extract version
* Update the CI config
2021-08-17 11:42:07 +02:00

22 lines
569 B
Go

// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT.
// +build go1.16,!go1.17
package stdlib
import (
"net/rpc/jsonrpc"
"reflect"
)
func init() {
Symbols["net/rpc/jsonrpc/jsonrpc"] = map[string]reflect.Value{
// function, constant and variable definitions
"Dial": reflect.ValueOf(jsonrpc.Dial),
"NewClient": reflect.ValueOf(jsonrpc.NewClient),
"NewClientCodec": reflect.ValueOf(jsonrpc.NewClientCodec),
"NewServerCodec": reflect.ValueOf(jsonrpc.NewServerCodec),
"ServeConn": reflect.ValueOf(jsonrpc.ServeConn),
}
}