Refactor backup/restore

Close #575
This commit is contained in:
MM20
2023-10-28 17:15:04 +02:00
parent c9d9b3a4e9
commit 47cf4e9483
24 changed files with 93 additions and 329 deletions
@@ -0,0 +1,8 @@
package de.mm20.launcher2.backup
import java.io.File
interface Backupable {
suspend fun backup(toDir: File)
suspend fun restore(fromDir: File)
}