mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
12 lines
188 B
Go
12 lines
188 B
Go
//go:build !js
|
|
|
|
package ws
|
|
|
|
import "github.com/coder/websocket"
|
|
|
|
func createDialOptions() *websocket.DialOptions {
|
|
return &websocket.DialOptions{
|
|
HTTPClient: httpClientNbDialer(),
|
|
}
|
|
}
|