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 {
StorageBase
ctx *context.Context
ctx context.Context
connection *swift.Connection
container string
storageDir string
@@ -144,7 +144,7 @@ func CreateSwiftStorage(storageURL string, key string, threads int) (storage *Sw
}
storage = &SwiftStorage{
context: &ctx,
ctx: ctx,
connection: &connection,
container: container,
storageDir: storageDir,