more cleanups

This commit is contained in:
Bolke de Bruin
2020-07-20 12:52:46 +02:00
parent 9209f9152d
commit 46be8de038
2 changed files with 22 additions and 36 deletions

View File

@@ -1,6 +1,6 @@
package transport
type HttpLayer interface {
type Transport interface {
ReadPacket() (n int, p []byte, err error)
WritePacket(b []byte) (n int, err error)
Close() error