From 9d627fb3c8a009b20ae198abe84b3a1d10a22a94 Mon Sep 17 00:00:00 2001 From: George <104024088+neuralcoral@users.noreply.github.com> Date: Thu, 28 Nov 2024 08:24:01 -0800 Subject: [PATCH] Update README.md: add missing 'time' import in code example (#49) * Added missing "time" import in README.md * Use tab --------- Co-authored-by: Vojtech Vitek (golang.cz) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fcb7eb3..074fee5 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ package main import ( "net/http" + "time" "github.com/go-chi/chi/v5" "github.com/go-chi/chi/v5/middleware"