1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-06 00:03:38 +00:00

More fixups

This commit is contained in:
Mark Feit
2021-12-04 10:37:11 -05:00
parent 041ba944c4
commit 1661caeb92

View File

@@ -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,