diff options
author | 2023-08-09 21:15:55 -0700 | |
---|---|---|
committer | 2023-08-09 22:10:44 -0700 | |
commit | c2349032552891745cbbc3d2a9e772845a0239f4 (patch) | |
tree | 593469b4ee248972708817e9a0d63dae9256b886 /errors/errors.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 'errors/errors.go')
-rw-r--r-- | errors/errors.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/errors/errors.go b/errors/errors.go index 7abdae73..bb0e04df 100644 --- a/errors/errors.go +++ b/errors/errors.go @@ -1,12 +1,12 @@ // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved. // SPDX-License-Identifier: Apache-2.0 -package errors // import "miniflux.app/errors" +package errors // import "miniflux.app/v2/errors" import ( "fmt" - "miniflux.app/locale" + "miniflux.app/v2/locale" ) // LocalizedError represents an error than could be translated to another language. |