shad-go/jsonrpc/jsonrpc.go
Fedor Korotkiy 31558fe3b4 Add jsonrpc
2020-04-16 17:20:03 +03:00

16 lines
270 B
Go

// +build !solution
package jsonrpc
import (
"context"
"net/http"
)
func MakeHandler(service interface{}) http.Handler {
panic("implement me")
}
func Call(ctx context.Context, endpoint string, method string, req, rsp interface{}) error {
panic("implement me")
}