mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2024-12-13 18:11:25 +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
|
||
|
}
|