Skip to content
Snippets Groups Projects
client_interface.go 306 B
Newer Older
  • Learn to ignore specific revisions
  • package routingtable
    
    import (
    	"github.com/bio-routing/bio-rd/net"
    	"github.com/bio-routing/bio-rd/route"
    )
    
    // RouteTableClient is the interface that every type of RIB must implement
    type RouteTableClient interface {
    	AddPath(*net.Prefix, *route.Path) error
    	RemovePath(*net.Prefix, *route.Path) error
    }