mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-29 11:33:48 +01:00
14 lines
167 B
Go
14 lines
167 B
Go
|
package client
|
||
|
|
||
|
type RelayAddr struct {
|
||
|
addr string
|
||
|
}
|
||
|
|
||
|
func (a RelayAddr) Network() string {
|
||
|
return "relay"
|
||
|
}
|
||
|
|
||
|
func (a RelayAddr) String() string {
|
||
|
return a.addr
|
||
|
}
|