mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 10:03:47 +01:00
14 lines
228 B
Go
14 lines
228 B
Go
|
package routemanager
|
||
|
|
||
|
import (
|
||
|
"net/netip"
|
||
|
)
|
||
|
|
||
|
func addToRouteTableIfNoExists(prefix netip.Prefix, addr string) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func removeFromRouteTableIfNonSystem(prefix netip.Prefix, addr string) error {
|
||
|
return nil
|
||
|
}
|