refactor(AzureFileStorage): Removed unesessary type declarations
This commit is contained in:
parent
4cae735e59
commit
ac6c8fc466
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