2022-02-10 22:06:57 +00:00
|
|
|
//go:build !solution
|
2020-04-16 10:27:30 +00:00
|
|
|
|
|
|
|
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")
|
|
|
|
}
|