From 62ccb9d8dad0cafb1c720db2e2474113c1c2c279 Mon Sep 17 00:00:00 2001 From: Davies Liu Date: Thu, 28 Jan 2021 11:50:54 +0800 Subject: [PATCH] prepare for merge --- LICENSE => juicesync/LICENSE | 0 Makefile => juicesync/Makefile | 0 README.md => juicesync/README.md | 0 {config => juicesync/config}/config.go | 0 go.mod => juicesync/go.mod | 0 go.sum => juicesync/go.sum | 0 main.go => juicesync/main.go | 0 {object => juicesync/object}/azure.go | 0 {object => juicesync/object}/b2.go | 0 {object => juicesync/object}/bos.go | 0 {object => juicesync/object}/cos.go | 0 {object => juicesync/object}/file.go | 0 {object => juicesync/object}/file_unix.go | 0 {object => juicesync/object}/filesystem_test.go | 0 {object => juicesync/object}/gs.go | 0 {object => juicesync/object}/hdfs.go | 0 {object => juicesync/object}/hdfs_kerberos.go | 0 {object => juicesync/object}/ibmcos.go | 0 {object => juicesync/object}/jss.go | 0 {object => juicesync/object}/ks3.go | 0 {object => juicesync/object}/mem.go | 0 {object => juicesync/object}/minio.go | 0 {object => juicesync/object}/mss.go | 0 {object => juicesync/object}/nos.go | 0 {object => juicesync/object}/object_storage.go | 0 {object => juicesync/object}/object_storage_test.go | 0 {object => juicesync/object}/obs.go | 0 {object => juicesync/object}/oos.go | 0 {object => juicesync/object}/oss.go | 0 {object => juicesync/object}/prefix.go | 0 {object => juicesync/object}/qingstor.go | 0 {object => juicesync/object}/qiniu.go | 0 {object => juicesync/object}/restful.go | 0 {object => juicesync/object}/s3.go | 0 {object => juicesync/object}/scs.go | 0 {object => juicesync/object}/scw.go | 0 {object => juicesync/object}/sftp.go | 0 {object => juicesync/object}/space.go | 0 {object => juicesync/object}/speedy.go | 0 {object => juicesync/object}/ufile.go | 0 {object => juicesync/object}/wasabi.go | 0 {sync => juicesync/sync}/cluster.go | 0 {sync => juicesync/sync}/cluster_test.go | 0 {sync => juicesync/sync}/sync.go | 0 {sync => juicesync/sync}/sync_test.go | 0 {utils => juicesync/utils}/logger.go | 0 {utils => juicesync/utils}/utils.go | 0 {versioninfo => juicesync/versioninfo}/versioninfo.go | 0 48 files changed, 0 insertions(+), 0 deletions(-) rename LICENSE => juicesync/LICENSE (100%) rename Makefile => juicesync/Makefile (100%) rename README.md => juicesync/README.md (100%) rename {config => juicesync/config}/config.go (100%) rename go.mod => juicesync/go.mod (100%) rename go.sum => juicesync/go.sum (100%) rename main.go => juicesync/main.go (100%) rename {object => juicesync/object}/azure.go (100%) rename {object => juicesync/object}/b2.go (100%) rename {object => juicesync/object}/bos.go (100%) rename {object => juicesync/object}/cos.go (100%) rename {object => juicesync/object}/file.go (100%) rename {object => juicesync/object}/file_unix.go (100%) rename {object => juicesync/object}/filesystem_test.go (100%) rename {object => juicesync/object}/gs.go (100%) rename {object => juicesync/object}/hdfs.go (100%) rename {object => juicesync/object}/hdfs_kerberos.go (100%) rename {object => juicesync/object}/ibmcos.go (100%) rename {object => juicesync/object}/jss.go (100%) rename {object => juicesync/object}/ks3.go (100%) rename {object => juicesync/object}/mem.go (100%) rename {object => juicesync/object}/minio.go (100%) rename {object => juicesync/object}/mss.go (100%) rename {object => juicesync/object}/nos.go (100%) rename {object => juicesync/object}/object_storage.go (100%) rename {object => juicesync/object}/object_storage_test.go (100%) rename {object => juicesync/object}/obs.go (100%) rename {object => juicesync/object}/oos.go (100%) rename {object => juicesync/object}/oss.go (100%) rename {object => juicesync/object}/prefix.go (100%) rename {object => juicesync/object}/qingstor.go (100%) rename {object => juicesync/object}/qiniu.go (100%) rename {object => juicesync/object}/restful.go (100%) rename {object => juicesync/object}/s3.go (100%) rename {object => juicesync/object}/scs.go (100%) rename {object => juicesync/object}/scw.go (100%) rename {object => juicesync/object}/sftp.go (100%) rename {object => juicesync/object}/space.go (100%) rename {object => juicesync/object}/speedy.go (100%) rename {object => juicesync/object}/ufile.go (100%) rename {object => juicesync/object}/wasabi.go (100%) rename {sync => juicesync/sync}/cluster.go (100%) rename {sync => juicesync/sync}/cluster_test.go (100%) rename {sync => juicesync/sync}/sync.go (100%) rename {sync => juicesync/sync}/sync_test.go (100%) rename {utils => juicesync/utils}/logger.go (100%) rename {utils => juicesync/utils}/utils.go (100%) rename {versioninfo => juicesync/versioninfo}/versioninfo.go (100%) diff --git a/LICENSE b/juicesync/LICENSE similarity index 100% rename from LICENSE rename to juicesync/LICENSE diff --git a/Makefile b/juicesync/Makefile similarity index 100% rename from Makefile rename to juicesync/Makefile diff --git a/README.md b/juicesync/README.md similarity index 100% rename from README.md rename to juicesync/README.md diff --git a/config/config.go b/juicesync/config/config.go similarity index 100% rename from config/config.go rename to juicesync/config/config.go diff --git a/go.mod b/juicesync/go.mod similarity index 100% rename from go.mod rename to juicesync/go.mod diff --git a/go.sum b/juicesync/go.sum similarity index 100% rename from go.sum rename to juicesync/go.sum diff --git a/main.go b/juicesync/main.go similarity index 100% rename from main.go rename to juicesync/main.go diff --git a/object/azure.go b/juicesync/object/azure.go similarity index 100% rename from object/azure.go rename to juicesync/object/azure.go diff --git a/object/b2.go b/juicesync/object/b2.go similarity index 100% rename from object/b2.go rename to juicesync/object/b2.go diff --git a/object/bos.go b/juicesync/object/bos.go similarity index 100% rename from object/bos.go rename to juicesync/object/bos.go diff --git a/object/cos.go b/juicesync/object/cos.go similarity index 100% rename from object/cos.go rename to juicesync/object/cos.go diff --git a/object/file.go b/juicesync/object/file.go similarity index 100% rename from object/file.go rename to juicesync/object/file.go diff --git a/object/file_unix.go b/juicesync/object/file_unix.go similarity index 100% rename from object/file_unix.go rename to juicesync/object/file_unix.go diff --git a/object/filesystem_test.go b/juicesync/object/filesystem_test.go similarity index 100% rename from object/filesystem_test.go rename to juicesync/object/filesystem_test.go diff --git a/object/gs.go b/juicesync/object/gs.go similarity index 100% rename from object/gs.go rename to juicesync/object/gs.go diff --git a/object/hdfs.go b/juicesync/object/hdfs.go similarity index 100% rename from object/hdfs.go rename to juicesync/object/hdfs.go diff --git a/object/hdfs_kerberos.go b/juicesync/object/hdfs_kerberos.go similarity index 100% rename from object/hdfs_kerberos.go rename to juicesync/object/hdfs_kerberos.go diff --git a/object/ibmcos.go b/juicesync/object/ibmcos.go similarity index 100% rename from object/ibmcos.go rename to juicesync/object/ibmcos.go diff --git a/object/jss.go b/juicesync/object/jss.go similarity index 100% rename from object/jss.go rename to juicesync/object/jss.go diff --git a/object/ks3.go b/juicesync/object/ks3.go similarity index 100% rename from object/ks3.go rename to juicesync/object/ks3.go diff --git a/object/mem.go b/juicesync/object/mem.go similarity index 100% rename from object/mem.go rename to juicesync/object/mem.go diff --git a/object/minio.go b/juicesync/object/minio.go similarity index 100% rename from object/minio.go rename to juicesync/object/minio.go diff --git a/object/mss.go b/juicesync/object/mss.go similarity index 100% rename from object/mss.go rename to juicesync/object/mss.go diff --git a/object/nos.go b/juicesync/object/nos.go similarity index 100% rename from object/nos.go rename to juicesync/object/nos.go diff --git a/object/object_storage.go b/juicesync/object/object_storage.go similarity index 100% rename from object/object_storage.go rename to juicesync/object/object_storage.go diff --git a/object/object_storage_test.go b/juicesync/object/object_storage_test.go similarity index 100% rename from object/object_storage_test.go rename to juicesync/object/object_storage_test.go diff --git a/object/obs.go b/juicesync/object/obs.go similarity index 100% rename from object/obs.go rename to juicesync/object/obs.go diff --git a/object/oos.go b/juicesync/object/oos.go similarity index 100% rename from object/oos.go rename to juicesync/object/oos.go diff --git a/object/oss.go b/juicesync/object/oss.go similarity index 100% rename from object/oss.go rename to juicesync/object/oss.go diff --git a/object/prefix.go b/juicesync/object/prefix.go similarity index 100% rename from object/prefix.go rename to juicesync/object/prefix.go diff --git a/object/qingstor.go b/juicesync/object/qingstor.go similarity index 100% rename from object/qingstor.go rename to juicesync/object/qingstor.go diff --git a/object/qiniu.go b/juicesync/object/qiniu.go similarity index 100% rename from object/qiniu.go rename to juicesync/object/qiniu.go diff --git a/object/restful.go b/juicesync/object/restful.go similarity index 100% rename from object/restful.go rename to juicesync/object/restful.go diff --git a/object/s3.go b/juicesync/object/s3.go similarity index 100% rename from object/s3.go rename to juicesync/object/s3.go diff --git a/object/scs.go b/juicesync/object/scs.go similarity index 100% rename from object/scs.go rename to juicesync/object/scs.go diff --git a/object/scw.go b/juicesync/object/scw.go similarity index 100% rename from object/scw.go rename to juicesync/object/scw.go diff --git a/object/sftp.go b/juicesync/object/sftp.go similarity index 100% rename from object/sftp.go rename to juicesync/object/sftp.go diff --git a/object/space.go b/juicesync/object/space.go similarity index 100% rename from object/space.go rename to juicesync/object/space.go diff --git a/object/speedy.go b/juicesync/object/speedy.go similarity index 100% rename from object/speedy.go rename to juicesync/object/speedy.go diff --git a/object/ufile.go b/juicesync/object/ufile.go similarity index 100% rename from object/ufile.go rename to juicesync/object/ufile.go diff --git a/object/wasabi.go b/juicesync/object/wasabi.go similarity index 100% rename from object/wasabi.go rename to juicesync/object/wasabi.go diff --git a/sync/cluster.go b/juicesync/sync/cluster.go similarity index 100% rename from sync/cluster.go rename to juicesync/sync/cluster.go diff --git a/sync/cluster_test.go b/juicesync/sync/cluster_test.go similarity index 100% rename from sync/cluster_test.go rename to juicesync/sync/cluster_test.go diff --git a/sync/sync.go b/juicesync/sync/sync.go similarity index 100% rename from sync/sync.go rename to juicesync/sync/sync.go diff --git a/sync/sync_test.go b/juicesync/sync/sync_test.go similarity index 100% rename from sync/sync_test.go rename to juicesync/sync/sync_test.go diff --git a/utils/logger.go b/juicesync/utils/logger.go similarity index 100% rename from utils/logger.go rename to juicesync/utils/logger.go diff --git a/utils/utils.go b/juicesync/utils/utils.go similarity index 100% rename from utils/utils.go rename to juicesync/utils/utils.go diff --git a/versioninfo/versioninfo.go b/juicesync/versioninfo/versioninfo.go similarity index 100% rename from versioninfo/versioninfo.go rename to juicesync/versioninfo/versioninfo.go -- GitLab