mirror of
https://github.com/sigcn/pg.git
synced 2025-10-05 21:46:51 +08:00
10 lines
97 B
Go
10 lines
97 B
Go
package netlink
|
|
|
|
import "net"
|
|
|
|
type RouteUpdate struct {
|
|
New bool
|
|
Dst *net.IPNet
|
|
Via net.IP
|
|
}
|