1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-11 17:51:01 +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

@ -9,7 +9,7 @@ Package client implements a client library for the Miniflux REST API.
This code snippet fetch the list of users:
import (
miniflux "miniflux.app/client"
miniflux "miniflux.app/v2/client"
)
client := miniflux.New("https://api.example.org", "admin", "secret")
@ -29,4 +29,4 @@ This one discover subscriptions on a website:
}
fmt.Println(subscriptions)
*/
package client // import "miniflux.app/client"
package client // import "miniflux.app/v2/client"