Use yggquic

This commit is contained in:
Neil Alexander
2023-11-26 16:08:21 +00:00
parent aa8a71dd1f
commit 4ab9007abe
6 changed files with 19 additions and 172 deletions

View File

@@ -13,6 +13,6 @@ import (
)
type Transport interface {
Dial(host string) (net.Conn, error)
Listener() net.Listener
Dial(network, host string) (net.Conn, error)
net.Listener
}