mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 09:33:24 +01:00
fd67892cb4
Refactor the flat code structure
12 lines
168 B
Go
12 lines
168 B
Go
package configurer
|
|
|
|
import (
|
|
"net"
|
|
|
|
"golang.zx2c4.com/wireguard/ipc"
|
|
)
|
|
|
|
func openUAPI(deviceName string) (net.Listener, error) {
|
|
return ipc.UAPIListen(deviceName)
|
|
}
|