Merge pull request #32 from netbenix/SCABIOSA-31

refactor(AzureFileStorage): Removed unesessary type declarations
This commit is contained in:
netbenix 2022-02-22 13:57:38 +01:00 committed by GitHub
commit 5a7f3b9ae7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ type AzureFileStorage struct {
StorageAccountKey string
}
func (azure AzureFileStorage) upload(fileName string, backupName string, destinationPath string) {
func (azure AzureFileStorage) upload(fileName, backupName, destinationPath string) {
logger := Logging.DetailedLogger("AzureFileStorage", "upload")
file, err := os.Open(fileName)