10 lines
151 B
Go
10 lines
151 B
Go
|
|
package transport
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Transport interface {
|
||
|
|
Send(data []byte) error
|
||
|
|
Receive(timeout time.Duration) ([]byte, error)
|
||
|
|
Close() error
|
||
|
|
}
|