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

Use canonical imports

This commit is contained in:
Frédéric Guillot 2018-08-24 21:51:50 -07:00
parent 7f2612d9a6
commit dbcc5d8a97
263 changed files with 962 additions and 956 deletions

View file

@ -7,4 +7,4 @@
Package integration implements API clients for third-party services.
*/
package integration
package integration // import "miniflux.app/integration"

View file

@ -2,13 +2,13 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package instapaper
package instapaper // import "miniflux.app/integration/instapaper"
import (
"fmt"
"net/url"
"github.com/miniflux/miniflux/http/client"
"miniflux.app/http/client"
)
// Client represents an Instapaper client.

View file

@ -2,17 +2,17 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package integration
package integration // import "miniflux.app/integration"
import (
"github.com/miniflux/miniflux/config"
"github.com/miniflux/miniflux/integration/instapaper"
"github.com/miniflux/miniflux/integration/nunuxkeeper"
"github.com/miniflux/miniflux/integration/pinboard"
"github.com/miniflux/miniflux/integration/pocket"
"github.com/miniflux/miniflux/integration/wallabag"
"github.com/miniflux/miniflux/logger"
"github.com/miniflux/miniflux/model"
"miniflux.app/config"
"miniflux.app/integration/instapaper"
"miniflux.app/integration/nunuxkeeper"
"miniflux.app/integration/pinboard"
"miniflux.app/integration/pocket"
"miniflux.app/integration/wallabag"
"miniflux.app/logger"
"miniflux.app/model"
)
// SendEntry send the entry to the activated providers.

View file

@ -2,14 +2,14 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package nunuxkeeper
package nunuxkeeper // import "miniflux.app/integration/nunuxkeeper"
import (
"fmt"
"net/url"
"path"
"github.com/miniflux/miniflux/http/client"
"miniflux.app/http/client"
)
// Document structure of a Nununx Keeper document

View file

@ -2,13 +2,13 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package pinboard
package pinboard // import "miniflux.app/integration/pinboard"
import (
"fmt"
"net/url"
"github.com/miniflux/miniflux/http/client"
"miniflux.app/http/client"
)
// Client represents a Pinboard client.

View file

@ -2,7 +2,7 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package pocket
package pocket // import "miniflux.app/integration/pocket"
import (
"errors"
@ -10,7 +10,7 @@ import (
"io/ioutil"
"net/url"
"github.com/miniflux/miniflux/http/client"
"miniflux.app/http/client"
)
// Connector manages the authorization flow with Pocket to get a personal access token.

View file

@ -2,12 +2,12 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package pocket
package pocket // import "miniflux.app/integration/pocket"
import (
"fmt"
"github.com/miniflux/miniflux/http/client"
"miniflux.app/http/client"
)
// Client represents a Pocket client.

View file

@ -2,7 +2,7 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package wallabag
package wallabag // import "miniflux.app/integration/wallabag"
import (
"encoding/json"
@ -10,7 +10,7 @@ import (
"io"
"net/url"
"github.com/miniflux/miniflux/http/client"
"miniflux.app/http/client"
)
// Client represents a Wallabag client.