feat: add TCPClientInterface methods for setting timeouts on Linux and OSX in new tcp_wasm.go file

This commit is contained in:
2025-12-29 23:00:48 -06:00
parent ed413b62a1
commit 59060d6002

View File

@@ -0,0 +1,12 @@
//go:build js && wasm
// +build js,wasm
package interfaces
func (tc *TCPClientInterface) setTimeoutsLinux() error {
return nil
}
func (tc *TCPClientInterface) setTimeoutsOSX() error {
return nil
}