From 0c5eb5420c53cc82d6eba52f947e8e7b4c076549 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Fri, 14 Aug 2020 23:51:52 +0100 Subject: [PATCH] Strip Advertise/Process from router --- static.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/static.go b/static.go index 439b2c8..f7822b1 100644 --- a/static.go +++ b/static.go @@ -33,14 +33,6 @@ func (s *static) Table() router.Table { return nil } -func (s *static) Advertise() (<-chan *router.Advert, error) { - return nil, nil -} - -func (s *static) Process(*router.Advert) error { - return nil -} - func (s *static) Lookup(opts ...router.QueryOption) ([]router.Route, error) { return s.table.Query(opts...) }