8 lines
112 B
Go
8 lines
112 B
Go
|
package comms
|
||
|
|
||
|
type EthereumClient interface {
|
||
|
Close()
|
||
|
Send(interface{}) error
|
||
|
Recv() (interface{}, error)
|
||
|
}
|