1
0
forked from extern/smegmesh
smegmesh/pkg/mesh/route_stub.go

17 lines
256 B
Go
Raw Normal View History

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
}