11 lines
114 B
Go
11 lines
114 B
Go
|
package discovery
|
||
|
|
||
|
import "net"
|
||
|
|
||
|
type Service struct {
|
||
|
Name string
|
||
|
Device string
|
||
|
AddrV4 net.IP
|
||
|
Port int
|
||
|
}
|