mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2025-02-07 12:59:19 +01:00
17 lines
256 B
Go
17 lines
256 B
Go
package mesh
|
|
|
|
type RouteManagerStub struct {
|
|
}
|
|
|
|
func (r *RouteManagerStub) UpdateRoutes() error {
|
|
return nil
|
|
}
|
|
|
|
func (r *RouteManagerStub) InstallRoutes() error {
|
|
return nil
|
|
}
|
|
|
|
func (r *RouteManagerStub) RemoveRoutes(meshId string) error {
|
|
return nil
|
|
}
|