mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-27 10:33:11 +01:00
891ba277b1
Initial modification to support mobile client Export necessary interfaces for Android framework
10 lines
209 B
Go
10 lines
209 B
Go
package routemanager
|
|
|
|
import "github.com/netbirdio/netbird/route"
|
|
|
|
// Manager is a route manager interface
|
|
type Manager interface {
|
|
UpdateRoutes(updateSerial uint64, newRoutes []*route.Route) error
|
|
Stop()
|
|
}
|