mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-05 10:21:12 +01:00
13 lines
184 B
Go
13 lines
184 B
Go
package ws
|
|
|
|
type WebsocketAddr struct {
|
|
}
|
|
|
|
func (a WebsocketAddr) Network() string {
|
|
return "websocket"
|
|
}
|
|
|
|
func (a WebsocketAddr) String() string {
|
|
return "websocket/unknown-addr"
|
|
}
|