1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-07 11:03:15 +00:00

pcloud: add support for real-time updates in mount

Co-authored-by: masrlinu <5259918+masrlinu@users.noreply.github.com>
This commit is contained in:
masrlinu
2025-12-17 16:13:25 +01:00
committed by GitHub
parent 3a6e07a613
commit c10a4d465c
3 changed files with 166 additions and 0 deletions

View File

@@ -222,3 +222,11 @@ type UserInfo struct {
} `json:"steps"`
} `json:"journey"`
}
// DiffResult is the response from /diff
type DiffResult struct {
Result int `json:"result"`
DiffID int64 `json:"diffid"`
Entries []map[string]any `json:"entries"`
Error string `json:"error"`
}