WIP: prepare for testing

This commit is contained in:
2025-04-21 07:11:02 +10:00
parent df828e2e9e
commit 59a91d29fd
11 changed files with 66 additions and 7 deletions

View File

@@ -16,7 +16,10 @@ package abstract
limitations under the License.
*/
import "time"
import (
"net"
"time"
)
type ConnectionType int
@@ -42,4 +45,5 @@ type TCPConnectionConfig interface {
type UDPConnectionConfig interface {
ConnectionConfig
Timeout() time.Duration
BackendAddr() net.Addr
}