Moving object storage drivers back to minio

This commit is contained in:
Frederick F. Kautz IV
2015-04-08 16:28:14 -07:00
parent d3caf2b733
commit 6241c9880b
53 changed files with 355 additions and 3684 deletions
+1 -1
View File
@@ -21,8 +21,8 @@ import (
"github.com/gorilla/mux"
"github.com/minio-io/iodine"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio-io/objectdriver"
)
// GET Bucket (List Objects)
+1 -1
View File
@@ -21,8 +21,8 @@ import (
"github.com/gorilla/mux"
"github.com/minio-io/iodine"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio-io/objectdriver"
)
// GET Object
+1 -1
View File
@@ -22,8 +22,8 @@ import (
"github.com/gorilla/mux"
"github.com/minio-io/iodine"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio-io/objectdriver"
)
// PUT Bucket policy
+1 -1
View File
@@ -19,7 +19,7 @@ package api
import (
"sort"
"github.com/minio-io/objectdriver"
"github.com/minio-io/minio/pkg/storage/drivers"
)
// Reply date format
+1 -1
View File
@@ -23,7 +23,7 @@ import (
router "github.com/gorilla/mux"
"github.com/minio-io/iodine"
"github.com/minio-io/minio/pkg/api/config"
"github.com/minio-io/objectdriver"
"github.com/minio-io/minio/pkg/storage/drivers"
)
// private use
+5 -5
View File
@@ -33,11 +33,11 @@ import (
"net/http/httptest"
"github.com/minio-io/minio/pkg/api"
"github.com/minio-io/objectdriver"
"github.com/minio-io/objectdriver/donut"
"github.com/minio-io/objectdriver/file"
"github.com/minio-io/objectdriver/memory"
"github.com/minio-io/objectdriver/mocks"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio-io/minio/pkg/storage/drivers/donut"
"github.com/minio-io/minio/pkg/storage/drivers/file"
"github.com/minio-io/minio/pkg/storage/drivers/memory"
"github.com/minio-io/minio/pkg/storage/drivers/mocks"
"github.com/stretchr/testify/mock"
. "github.com/minio-io/check"
+1 -1
View File
@@ -24,7 +24,7 @@ import (
"strconv"
"time"
"github.com/minio-io/objectdriver"
"github.com/minio-io/minio/pkg/storage/drivers"
)
// No encoder interface exists, so we create one.
+1 -1
View File
@@ -20,7 +20,7 @@ import (
"net/url"
"strconv"
"github.com/minio-io/objectdriver"
"github.com/minio-io/minio/pkg/storage/drivers"
)
// parse bucket url queries
+4 -4
View File
@@ -28,11 +28,11 @@ import (
"github.com/minio-io/minio/pkg/api"
"github.com/minio-io/minio/pkg/api/web"
"github.com/minio-io/minio/pkg/server/httpserver"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio-io/minio/pkg/storage/drivers/donut"
"github.com/minio-io/minio/pkg/storage/drivers/file"
"github.com/minio-io/minio/pkg/storage/drivers/memory"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio-io/objectdriver"
"github.com/minio-io/objectdriver/donut"
"github.com/minio-io/objectdriver/file"
"github.com/minio-io/objectdriver/memory"
)
// Config - http server parameters
Submodule pkg/storage/drivers added at 64e55f1829