From 1f4a9c5f145224f3c4de016e927764e85a81b7b7 Mon Sep 17 00:00:00 2001 From: Matthias Hannig Date: Fri, 7 Apr 2017 11:18:51 +0200 Subject: [PATCH] fixed typo --- birdwatcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/birdwatcher.go b/birdwatcher.go index 2ca884e..a1662fb 100644 --- a/birdwatcher.go +++ b/birdwatcher.go @@ -63,7 +63,7 @@ func makeRouter(config endpoints.ServerConfig) *httprouter.Router { r.GET("/routes/filtered/:protocol", endpoints.Endpoint(endpoints.RoutesFiltered)) } if isModuleEnabled("routes_noexport", whitelist) { - r.GET("/routes/noexport/:protocol", endpoints.Endpoint(endpoints.RoutesNoexport)) + r.GET("/routes/noexport/:protocol", endpoints.Endpoint(endpoints.RoutesNoExport)) } if isModuleEnabled("routes_prefixed", whitelist) { r.GET("/routes/prefix", endpoints.Endpoint(endpoints.RoutesPrefixed))