aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middleware/basic_auth.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2017-12-12 21:48:13 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net>2017-12-12 21:48:13 -0800
commit84d912c9794eaaef0f06638d9d23716f4e02b42f (patch)
treef02f77cbd1213c8dbf9d3f9518a2c7e576b0e5c0 /server/middleware/basic_auth.go
parent9b1128d56dc2129a8cb90e882f67155ab74521b9 (diff)
Rewrite imports
Diffstat (limited to 'server/middleware/basic_auth.go')
-rw-r--r--server/middleware/basic_auth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/middleware/basic_auth.go b/server/middleware/basic_auth.go
index 3ad5318..887acc0 100644
--- a/server/middleware/basic_auth.go
+++ b/server/middleware/basic_auth.go
@@ -9,7 +9,7 @@ import (
"log"
"net/http"
- "github.com/miniflux/miniflux2/storage"
+ "github.com/miniflux/miniflux/storage"
)
// BasicAuthMiddleware is the middleware for HTTP Basic authentication.