refactor(StorageInterface): Removed unused 'Backup' struct

This commit is contained in:
netbenix 2021-12-16 18:36:13 +01:00
parent cad2dd18d3
commit cf29dc05d0

View file

@ -25,12 +25,6 @@ type Config struct {
CreateLocalBackup bool `json:"createLocalBackup"` CreateLocalBackup bool `json:"createLocalBackup"`
} `json:"foldersToBackup"` } `json:"foldersToBackup"`
} }
type Backup struct{
backupName string
folderPath string
storageType string
createLocalBackup bool
}
func readConfig() []byte { func readConfig() []byte {
logger := Logging.DetailedLogger("ConfigHandler", "readConfig") logger := Logging.DetailedLogger("ConfigHandler", "readConfig")