1
0
Fork 0

Import order as goimports does

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2016-12-30 09:21:13 +01:00
parent e4952cd145
commit 8a348423ae
37 changed files with 91 additions and 71 deletions

View file

@ -7,11 +7,12 @@ import (
"crypto/tls"
"crypto/x509"
"errors"
"github.com/containous/traefik/log"
"github.com/xenolf/lego/acme"
"reflect"
"sync"
"time"
"github.com/containous/traefik/log"
"github.com/xenolf/lego/acme"
)
// Account is used to store lets encrypt registration info

View file

@ -5,6 +5,12 @@ import (
"crypto/tls"
"errors"
"fmt"
"io/ioutil"
fmtlog "log"
"os"
"strings"
"time"
"github.com/BurntSushi/ty/fun"
"github.com/cenk/backoff"
"github.com/containous/staert"
@ -14,11 +20,6 @@ import (
"github.com/containous/traefik/types"
"github.com/xenolf/lego/acme"
"github.com/xenolf/lego/providers/dns"
"io/ioutil"
fmtlog "log"
"os"
"strings"
"time"
)
var (

View file

@ -2,12 +2,13 @@ package acme
import (
"encoding/base64"
"github.com/xenolf/lego/acme"
"net/http"
"net/http/httptest"
"reflect"
"sync"
"testing"
"github.com/xenolf/lego/acme"
)
func TestDomainsSet(t *testing.T) {

View file

@ -2,15 +2,15 @@ package acme
import (
"crypto/tls"
"fmt"
"strings"
"sync"
"time"
"fmt"
"github.com/cenk/backoff"
"github.com/containous/traefik/cluster"
"github.com/containous/traefik/log"
"github.com/xenolf/lego/acme"
"time"
)
var _ acme.ChallengeProviderTimeout = (*challengeProvider)(nil)

View file

@ -3,10 +3,11 @@ package acme
import (
"encoding/json"
"fmt"
"github.com/containous/traefik/cluster"
"github.com/containous/traefik/log"
"io/ioutil"
"sync"
"github.com/containous/traefik/cluster"
"github.com/containous/traefik/log"
)
var _ cluster.Store = (*LocalStore)(nil)