Rework storage structs, link preview

This commit is contained in:
Christoph Hagen
2025-01-08 14:59:04 +01:00
parent b99c064d10
commit a7197b9628
75 changed files with 1365 additions and 1454 deletions

View File

@ -0,0 +1,17 @@
struct LoadingResult {
let settings: Settings
let posts: [Post]
let pages: [Page]
let tags: [Tag]
let files: [FileResource]
let tagOverview: Tag?
let errors: [String]
}