mirror of
https://github.com/blacktop/ipsw.git
synced 2026-06-07 12:27:36 +00:00
12 lines
136 B
Go
12 lines
136 B
Go
//go:build windows
|
|
|
|
package usb
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func usbmuxdDial() (net.Conn, error) {
|
|
return net.Dial("tcp", "localhost:27015")
|
|
}
|