mirror of
https://github.com/miniflux/v2.git
synced 2025-07-27 17:28:38 +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:
parent
c980dfe434
commit
c234903255
315 changed files with 1134 additions and 1134 deletions
10
api/opml.go
10
api/opml.go
|
@ -1,15 +1,15 @@
|
|||
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package api // import "miniflux.app/api"
|
||||
package api // import "miniflux.app/v2/api"
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"miniflux.app/http/request"
|
||||
"miniflux.app/http/response/json"
|
||||
"miniflux.app/http/response/xml"
|
||||
"miniflux.app/reader/opml"
|
||||
"miniflux.app/v2/http/request"
|
||||
"miniflux.app/v2/http/response/json"
|
||||
"miniflux.app/v2/http/response/xml"
|
||||
"miniflux.app/v2/reader/opml"
|
||||
)
|
||||
|
||||
func (h *handler) exportFeeds(w http.ResponseWriter, r *http.Request) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue