mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
11 lines
193 B
Go
11 lines
193 B
Go
//go:build js
|
|
|
|
package ws
|
|
|
|
import "github.com/coder/websocket"
|
|
|
|
func createDialOptions() *websocket.DialOptions {
|
|
// WASM version doesn't support HTTPClient
|
|
return &websocket.DialOptions{}
|
|
}
|