From d2e9d8320857f5768c54843a43ad16f59d6a3e8f Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Thu, 20 May 2021 22:46:19 +0300 Subject: - Update linters - Implement base interfaces - Implement BST search algo for the in-memory storage Signed-off-by: Valery Piashchynski --- plugins/gzip/plugin.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'plugins/gzip/plugin.go') diff --git a/plugins/gzip/plugin.go b/plugins/gzip/plugin.go index 24b125fb..133704f8 100644 --- a/plugins/gzip/plugin.go +++ b/plugins/gzip/plugin.go @@ -4,6 +4,7 @@ import ( "net/http" "github.com/NYTimes/gziphandler" + "github.com/gofiber/fiber/v2" ) const PluginName = "gzip" @@ -21,6 +22,10 @@ func (g *Plugin) Middleware(next http.Handler) http.Handler { }) } +func (g *Plugin) FiberMiddleware(ctx fiber.Ctx) { + +} + // Available interface implementation func (g *Plugin) Available() {} -- cgit v1.2.3