8 lines
127 B
Go
8 lines
127 B
Go
package rpc
|
|
|
|
import "net/http"
|
|
|
|
type Client interface {
|
|
HandleRequest(r *http.Request, data []byte) (*http.Response, error)
|
|
}
|