mirror of
https://github.com/neilalexander/yggmail.git
synced 2026-05-08 20:56:28 +03:00
Initial commit
This commit is contained in:
10
internal/transport/transport.go
Normal file
10
internal/transport/transport.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package transport
|
||||
|
||||
import (
|
||||
"net"
|
||||
)
|
||||
|
||||
type Transport interface {
|
||||
Dial(host string) (net.Conn, error)
|
||||
Listener() net.Listener
|
||||
}
|
||||
Reference in New Issue
Block a user