Initial commit

This commit is contained in:
Neil Alexander
2021-07-07 18:15:07 +01:00
commit ceffe7612d
26 changed files with 2130 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package transport
import (
"net"
)
type Transport interface {
Dial(host string) (net.Conn, error)
Listener() net.Listener
}