Skip to content

Instantly share code, notes, and snippets.

@istoican
istoican / jsonrpc
Last active November 22, 2015 20:56
Golang jsonrpc over http wrapper
import (
"io"
"log"
"net/http"
"net/rpc"
"net/rpc/jsonrpc"
)
func init() {
http.HandleFunc("/rpc", rpcHandler)