1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

Rename Miniflux package name to follow Go module naming convention

For reference: https://go.dev/ref/mod#major-version-suffixes
This commit is contained in:
Frédéric Guillot 2023-08-09 21:15:55 -07:00
parent c980dfe434
commit c234903255
315 changed files with 1134 additions and 1134 deletions

View file

@ -1,7 +1,7 @@
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package xml // import "miniflux.app/reader/xml"
package xml // import "miniflux.app/v2/reader/xml"
import (
"bytes"
@ -10,7 +10,7 @@ import (
"io"
"strings"
"miniflux.app/reader/encoding"
"miniflux.app/v2/reader/encoding"
)
// NewDecoder returns a XML decoder that filters illegal characters.