diff options
author | 2017-11-21 18:30:16 -0800 | |
---|---|---|
committer | 2017-11-21 18:30:16 -0800 | |
commit | 02ff7b4bcf2b2c691e55ae61fe97bfd9ae37658e (patch) | |
tree | 236d95c147453fcdeacd92cdc17fd886d664c1b0 /server/core/handler.go | |
parent | 25cbd657771a67ef41abac4089a231369b96276e (diff) | |
download | v2-02ff7b4bcf2b2c691e55ae61fe97bfd9ae37658e.tar.gz v2-02ff7b4bcf2b2c691e55ae61fe97bfd9ae37658e.tar.zst v2-02ff7b4bcf2b2c691e55ae61fe97bfd9ae37658e.zip |
Improve Response to be more idiomatic
Diffstat (limited to 'server/core/handler.go')
-rw-r--r-- | server/core/handler.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/server/core/handler.go b/server/core/handler.go index 43205647..2802f318 100644 --- a/server/core/handler.go +++ b/server/core/handler.go @@ -5,14 +5,15 @@ package core import ( + "log" + "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" - "log" - "net/http" - "time" "github.com/gorilla/mux" ) |