diff options
author | 2023-08-09 21:15:55 -0700 | |
---|---|---|
committer | 2023-08-09 22:10:44 -0700 | |
commit | c2349032552891745cbbc3d2a9e772845a0239f4 (patch) | |
tree | 593469b4ee248972708817e9a0d63dae9256b886 /http/response/json/json.go | |
parent | c980dfe434346a8ce9f953cb59873a6ec971d773 (diff) | |
download | v2-c2349032552891745cbbc3d2a9e772845a0239f4.tar.gz v2-c2349032552891745cbbc3d2a9e772845a0239f4.tar.zst v2-c2349032552891745cbbc3d2a9e772845a0239f4.zip |
Rename Miniflux package name to follow Go module naming convention
For reference: https://go.dev/ref/mod#major-version-suffixes
Diffstat (limited to 'http/response/json/json.go')
-rw-r--r-- | http/response/json/json.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/http/response/json/json.go b/http/response/json/json.go index 17eca55a..f0f88033 100644 --- a/http/response/json/json.go +++ b/http/response/json/json.go @@ -1,15 +1,15 @@ // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved. // SPDX-License-Identifier: Apache-2.0 -package json // import "miniflux.app/http/response/json" +package json // import "miniflux.app/v2/http/response/json" import ( "encoding/json" "errors" "net/http" - "miniflux.app/http/response" - "miniflux.app/logger" + "miniflux.app/v2/http/response" + "miniflux.app/v2/logger" ) const contentTypeHeader = `application/json` |