chore: move appdata folder to .claudeDo

This commit is contained in:
Mika Kuns
2026-08-26 14:26:19 +02:00
parent 7fe8729603
commit c4928b4def
24 changed files with 99 additions and 56 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ public sealed class AttachmentStore
private readonly string _root;
public AttachmentStore(string? root = null)
=> _root = root ?? Paths.Expand("~/.todo-app/attachments");
=> _root = root ?? Path.Combine(Paths.AppDataRoot(), "attachments");
public string Root => _root;