refactor(Config): Renamed targetPath to LocalTargetPath

This commit is contained in:
netbenix 2021-12-23 11:02:48 +01:00
parent 46b0c6013f
commit 524f83ec00

View file

@ -21,8 +21,9 @@ type Config struct {
BackupName string `json:"backupName"`
FolderPath string `json:"folderPath"`
RemoteStorageType string `json:"remoteStorageType"`
TargetPath string `json:"targetPath"`
CreateLocalBackup bool `json:"createLocalBackup"`
RemoteTargetPath string `json:"remoteTargetPath"`
CreateLocalBackup bool `json:"createLocalBackup"`
LocalTargetPath string `json:"LocalTargetPath"`
} `json:"foldersToBackup"`
}