From c41d3486207bda8d885d0bb0003234aac9d75705 Mon Sep 17 00:00:00 2001 From: Fedor Korotkiy Date: Thu, 30 Mar 2023 15:34:04 +0400 Subject: [PATCH] Fix --- middleware/httpsnoop_test.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 middleware/httpsnoop_test.go diff --git a/middleware/httpsnoop_test.go b/middleware/httpsnoop_test.go new file mode 100644 index 0000000..5c4178c --- /dev/null +++ b/middleware/httpsnoop_test.go @@ -0,0 +1,6 @@ +package middlware + +import ( + // without that line, go mod tidy might remove httpsnoop in student repository + _ "github.com/felixge/httpsnoop" +)