13 lines
202 B
Go
13 lines
202 B
Go
//go:build js && wasm
|
|
// +build js,wasm
|
|
|
|
package interfaces
|
|
|
|
func (tc *TCPClientInterface) setTimeoutsLinux() error {
|
|
return nil
|
|
}
|
|
|
|
func (tc *TCPClientInterface) setTimeoutsOSX() error {
|
|
return nil
|
|
}
|