Skip to content

Commit 2e168ab

Browse files
committed
v2
1 parent 0d0f0ce commit 2e168ab

20 files changed

+32
-27
lines changed

cmd/account.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/qiniu/qshell/iqshell"
7+
"github.com/qiniu/qshell/v2/iqshell"
88
"github.com/spf13/cobra"
99
)
1010

cmd/alilistbucket.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cmd
22

33
import (
44
"github.com/astaxie/beego/logs"
5-
"github.com/qiniu/qshell/iqshell"
5+
"github.com/qiniu/qshell/v2/iqshell"
66
"github.com/spf13/cobra"
77
)
88

cmd/asyncfetch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/qiniu/api.v7/v7/storage"
10-
"github.com/qiniu/qshell/iqshell"
10+
"github.com/qiniu/qshell/v2/iqshell"
1111
"github.com/spf13/cobra"
1212
)
1313

cmd/awsfetch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/aws/aws-sdk-go/aws/credentials"
1111
"github.com/aws/aws-sdk-go/aws/session"
1212
"github.com/aws/aws-sdk-go/service/s3"
13-
"github.com/qiniu/qshell/iqshell"
13+
"github.com/qiniu/qshell/v2/iqshell"
1414
"github.com/spf13/cobra"
1515
)
1616

cmd/bucket.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ package cmd
22

33
import (
44
"fmt"
5+
"os"
6+
57
"github.com/astaxie/beego/logs"
6-
"github.com/qiniu/qshell/iqshell"
8+
"github.com/qiniu/qshell/v2/iqshell"
79
"github.com/spf13/cobra"
8-
"os"
910
)
1011

1112
var bucketsCmd = &cobra.Command{

cmd/cdn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99

1010
"github.com/qiniu/api.v7/v7/cdn"
11-
"github.com/qiniu/qshell/iqshell"
11+
"github.com/qiniu/qshell/v2/iqshell"
1212
"github.com/spf13/cobra"
1313
)
1414

cmd/fop.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ package cmd
22

33
import (
44
"fmt"
5-
"github.com/qiniu/qshell/iqshell"
6-
"github.com/spf13/cobra"
75
"os"
6+
7+
"github.com/qiniu/qshell/v2/iqshell"
8+
"github.com/spf13/cobra"
89
)
910

1011
var (

cmd/putfile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
"github.com/qiniu/api.v7/v7/storage"
11-
"github.com/qiniu/qshell/iqshell"
11+
"github.com/qiniu/qshell/v2/iqshell"
1212
"github.com/spf13/cobra"
1313
)
1414

cmd/qdownload.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ import (
44
"bytes"
55
"encoding/json"
66
"fmt"
7-
"github.com/astaxie/beego/logs"
8-
"github.com/qiniu/qshell/iqshell"
9-
"github.com/spf13/cobra"
107
"io/ioutil"
118
"os"
9+
10+
"github.com/astaxie/beego/logs"
11+
"github.com/qiniu/qshell/v2/iqshell"
12+
"github.com/spf13/cobra"
1213
)
1314

1415
var qDownloadCmd = &cobra.Command{

cmd/qupload.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"github.com/astaxie/beego/logs"
1212
"github.com/qiniu/api.v7/v7/storage"
13-
"github.com/qiniu/qshell/iqshell"
13+
"github.com/qiniu/qshell/v2/iqshell"
1414
"github.com/spf13/cobra"
1515
)
1616

0 commit comments

Comments
 (0)