shad-go/jsonrpc/jsonrpc.go
2022-02-10 22:06:57 +00:00

17 lines
291 B
Go

//go:build !solution
// +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")
}