1
mirror of https://github.com/rclone/rclone synced 2025-01-12 15:46:25 +01:00

build: fix for goimports format change

See https://github.com/golang/go/issues/23709
This commit is contained in:
Nick Craig-Wood 2018-07-03 22:33:15 +01:00
parent 794e55de27
commit 8c0335a176
2 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ import (
"github.com/ncw/rclone/vfs/vfsflags"
"github.com/spf13/cobra"
"golang.org/x/net/context" // switch to "context" when we stop supporting go1.8
"golang.org/x/net/webdav"
)

View File

@ -12,6 +12,7 @@ import (
"io"
"net/http"
_ "net/http/pprof" // install the pprof http handlers
"strings"
"github.com/ncw/rclone/cmd/serve/httplib"