mirror of
https://github.com/gilbertchen/duplicacy
synced 2025-12-06 00:03:38 +00:00
More fixups
This commit is contained in:
@@ -16,7 +16,7 @@ import (
|
|||||||
type SwiftStorage struct {
|
type SwiftStorage struct {
|
||||||
StorageBase
|
StorageBase
|
||||||
|
|
||||||
ctx *context.Context
|
ctx context.Context
|
||||||
connection *swift.Connection
|
connection *swift.Connection
|
||||||
container string
|
container string
|
||||||
storageDir string
|
storageDir string
|
||||||
@@ -144,7 +144,7 @@ func CreateSwiftStorage(storageURL string, key string, threads int) (storage *Sw
|
|||||||
}
|
}
|
||||||
|
|
||||||
storage = &SwiftStorage{
|
storage = &SwiftStorage{
|
||||||
context: &ctx,
|
ctx: ctx,
|
||||||
connection: &connection,
|
connection: &connection,
|
||||||
container: container,
|
container: container,
|
||||||
storageDir: storageDir,
|
storageDir: storageDir,
|
||||||
|
|||||||
Reference in New Issue
Block a user