Pot impl a FixedGlobalRegion

This commit is contained in:
2025-08-02 13:25:22 +02:00
parent c49a212c05
commit 01d9532aa6
8 changed files with 171 additions and 193 deletions
@@ -65,4 +65,22 @@ public interface RegionBackups {
@Nullable
Backup get(String name);
RegionBackups EMPTY = new RegionBackups() {
@Override
public Optional<Backup> create(BackupType backupType) {
return Optional.empty();
}
@Override
public @NonNull List<Backup> list() {
return List.of();
}
@Nullable
@Override
public Backup get(String name) {
return null;
}
};
}