mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 11:21:04 +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"
|
|
}
|