diff options
author | 2017-12-12 21:48:13 -0800 | |
---|---|---|
committer | 2017-12-12 21:48:13 -0800 | |
commit | 84d912c9794eaaef0f06638d9d23716f4e02b42f (patch) | |
tree | f02f77cbd1213c8dbf9d3f9518a2c7e576b0e5c0 /server/core/context.go | |
parent | 9b1128d56dc2129a8cb90e882f67155ab74521b9 (diff) | |
download | v2-84d912c9794eaaef0f06638d9d23716f4e02b42f.tar.gz v2-84d912c9794eaaef0f06638d9d23716f4e02b42f.tar.zst v2-84d912c9794eaaef0f06638d9d23716f4e02b42f.zip |
Rewrite imports
Diffstat (limited to 'server/core/context.go')
-rw-r--r-- | server/core/context.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/core/context.go b/server/core/context.go index 393060d3..0f064fe0 100644 --- a/server/core/context.go +++ b/server/core/context.go @@ -8,10 +8,10 @@ import ( "log" "net/http" - "github.com/miniflux/miniflux2/model" - "github.com/miniflux/miniflux2/server/middleware" - "github.com/miniflux/miniflux2/server/route" - "github.com/miniflux/miniflux2/storage" + "github.com/miniflux/miniflux/model" + "github.com/miniflux/miniflux/server/middleware" + "github.com/miniflux/miniflux/server/route" + "github.com/miniflux/miniflux/storage" "github.com/gorilla/mux" ) |