From db76b9ca953885982faedce8779b4bb89a3dc90f Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 16 Dec 2015 16:52:54 +0200 Subject: [PATCH] Issue #8: mention fasthttprouter in readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 08fa23d..5d88016 100644 --- a/README.md +++ b/README.md @@ -473,7 +473,9 @@ uintBuf := fasthttp.AppendUint(nil, 1234) There are no plans to add request routing into fasthttp. I believe request routing must be implemented in a separate package(s) like [httprouter](https://github.com/julienschmidt/httprouter). - See [this issue](https://github.com/valyala/fasthttp/issues/8) for more info. + Try [fasthttrouter](https://github.com/buaazp/fasthttprouter), + [httprouter](https://github.com/julienschmidt/httprouter) fork for fasthttp. + See also [this issue](https://github.com/valyala/fasthttp/issues/8) for more info. * *I detected data race in fasthttp!*