1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-11 17:51:01 +00:00

Rewrite imports

This commit is contained in:
Frédéric Guillot 2017-12-12 21:48:13 -08:00
parent 9b1128d56d
commit 84d912c979
103 changed files with 245 additions and 241 deletions

View file

@ -1,5 +1,5 @@
// Code generated by go generate; DO NOT EDIT.
// 2017-12-12 19:14:08.437349475 -0800 PST m=+0.019432121
// 2017-12-12 21:44:02.670455816 -0800 PST m=+0.024866519
package template

View file

@ -5,9 +5,10 @@
package helper
import (
"github.com/miniflux/miniflux2/locale"
"math"
"time"
"github.com/miniflux/miniflux/locale"
)
// Texts to be translated if necessary.

View file

@ -6,9 +6,10 @@ package helper
import (
"fmt"
"github.com/miniflux/miniflux2/locale"
"testing"
"time"
"github.com/miniflux/miniflux/locale"
)
func TestElapsedTime(t *testing.T) {

View file

@ -13,13 +13,13 @@ import (
"strings"
"time"
"github.com/miniflux/miniflux2/config"
"github.com/miniflux/miniflux2/errors"
"github.com/miniflux/miniflux2/locale"
"github.com/miniflux/miniflux2/server/route"
"github.com/miniflux/miniflux2/server/template/helper"
"github.com/miniflux/miniflux2/server/ui/filter"
"github.com/miniflux/miniflux2/url"
"github.com/miniflux/miniflux/config"
"github.com/miniflux/miniflux/errors"
"github.com/miniflux/miniflux/locale"
"github.com/miniflux/miniflux/server/route"
"github.com/miniflux/miniflux/server/template/helper"
"github.com/miniflux/miniflux/server/ui/filter"
"github.com/miniflux/miniflux/url"
"github.com/gorilla/mux"
)

View file

@ -1,5 +1,5 @@
// Code generated by go generate; DO NOT EDIT.
// 2017-12-12 19:14:08.427613446 -0800 PST m=+0.009696092
// 2017-12-12 21:44:02.658745181 -0800 PST m=+0.013155884
package template