shad-go/jsonrpc/jsonrpc.go

17 lines
270 B
Go
Raw Normal View History

2020-04-16 10:27:30 +00:00
// +build !solution
package jsonrpc
2020-04-16 14:20:03 +00:00
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")
}