Merge pull request #32 from netbenix/SCABIOSA-31
refactor(AzureFileStorage): Removed unesessary type declarations
This commit is contained in:
commit
5a7f3b9ae7
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Reference in a new issue