This commit is contained in:
chrislu
2022-09-14 23:06:44 -07:00
parent c8645fd232
commit 21c0587900
45 changed files with 730 additions and 694 deletions

View File

@@ -31,21 +31,21 @@ var (
)
type CopyOptions struct {
include *string
replication *string
collection *string
ttl *string
diskType *string
maxMB *int
masterClient *wdclient.MasterClient
include *string
replication *string
collection *string
ttl *string
diskType *string
maxMB *int
masterClient *wdclient.MasterClient
concurrentFiles *int
concurrentChunks *int
grpcDialOption grpc.DialOption
masters []string
cipher bool
ttlSec int32
checkSize *bool
verbose *bool
grpcDialOption grpc.DialOption
masters []string
cipher bool
ttlSec int32
checkSize *bool
verbose *bool
}
func init() {

View File

@@ -50,7 +50,7 @@ type SyncOptions struct {
}
const (
SyncKeyPrefix = "sync."
SyncKeyPrefix = "sync."
DefaultConcurrencyLimit = 32
)

View File

@@ -52,7 +52,7 @@ type githubError struct {
Message string
}
//default version is not full version
// default version is not full version
var isFullVersion = false
var (

View File

@@ -3,7 +3,7 @@
package command
//set true if gtags are set
// set true if gtags are set
func init() {
isFullVersion = true
}