From a9c7db27b61ed565c8ccc1665c6872a8f6dce7d5 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 30 Jun 2021 17:27:00 +0300 Subject: [PATCH] fix broken link to plugin example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b507cd..9017eba 100644 --- a/README.md +++ b/README.md @@ -246,7 +246,7 @@ The core functionality of reproxy can be extended with external plugins. Each pl To simplify the development process all the building blocks provided. It includes `lib.Plugin` handling registration, listening and dispatching calls as well as `lib.Request` and `lib.Response` defining input and output. Plugin's authors should implement concrete handlers satisfying `func(req lib.Request, res *lib.HandlerResponse) (err error)` signature. Each plugin may contain multiple handlers like this. -_See [examples/plugin]() for more info_ +_See [examples/plugin](https://github.com/umputun/reproxy/tree/master/examples/plugin) for more info_ ## Container security