feat(files): add v2 task and metadata workflows

This commit is contained in:
yoyuzh
2026-04-09 00:42:41 +08:00
parent c5362ebe31
commit 977eb60b17
60 changed files with 5218 additions and 72 deletions

View File

@@ -0,0 +1,10 @@
package com.yoyuzh.files;
import java.util.Map;
public record BackgroundTaskHandlerResult(Map<String, Object> publicStatePatch) {
public static BackgroundTaskHandlerResult empty() {
return new BackgroundTaskHandlerResult(Map.of());
}
}