mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 08:36:59 +08:00
13 lines
299 B
Go
Executable File
13 lines
299 B
Go
Executable File
package schema
|
|
|
|
type Neighbor struct {
|
|
Uptime int64 `json:"uptime"`
|
|
UUID string `json:"uuid"`
|
|
HwAddr string `json:"ethernet"`
|
|
IpAddr string `json:"address"`
|
|
Client string `json:"client"`
|
|
Switch string `json:"switch"`
|
|
Network string `json:"network"`
|
|
Device string `json:"device"`
|
|
}
|