aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/core
diff options
context:
space:
mode:
Diffstat (limited to 'server/core')
-rw-r--r--server/core/context.go8
-rw-r--r--server/core/handler.go10
-rw-r--r--server/core/html_response.go2
-rw-r--r--server/core/response.go2
4 files changed, 11 insertions, 11 deletions
diff --git a/server/core/context.go b/server/core/context.go
index 393060d..0f064fe 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"
)
diff --git a/server/core/handler.go b/server/core/handler.go
index db6204a..809282e 100644
--- a/server/core/handler.go
+++ b/server/core/handler.go
@@ -9,11 +9,11 @@ import (
"net/http"
"time"
- "github.com/miniflux/miniflux2/helper"
- "github.com/miniflux/miniflux2/locale"
- "github.com/miniflux/miniflux2/server/middleware"
- "github.com/miniflux/miniflux2/server/template"
- "github.com/miniflux/miniflux2/storage"
+ "github.com/miniflux/miniflux/helper"
+ "github.com/miniflux/miniflux/locale"
+ "github.com/miniflux/miniflux/server/middleware"
+ "github.com/miniflux/miniflux/server/template"
+ "github.com/miniflux/miniflux/storage"
"github.com/gorilla/mux"
)
diff --git a/server/core/html_response.go b/server/core/html_response.go
index 52b5145..1b29ee8 100644
--- a/server/core/html_response.go
+++ b/server/core/html_response.go
@@ -8,7 +8,7 @@ import (
"log"
"net/http"
- "github.com/miniflux/miniflux2/server/template"
+ "github.com/miniflux/miniflux/server/template"
)
// HTMLResponse handles HTML responses.
diff --git a/server/core/response.go b/server/core/response.go
index 70050a1..9fb4367 100644
--- a/server/core/response.go
+++ b/server/core/response.go
@@ -8,7 +8,7 @@ import (
"net/http"
"time"
- "github.com/miniflux/miniflux2/server/template"
+ "github.com/miniflux/miniflux/server/template"
)
// Response handles HTTP responses.