2021-01-27 07:50:13 +01:00
|
|
|
//
|
|
|
|
// DocumentStore.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by Cirno MainasuK on 2021-1-27.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import Combine
|
2021-04-16 14:06:36 +02:00
|
|
|
import MastodonSDK
|
2021-01-27 07:50:13 +01:00
|
|
|
|
2021-04-16 14:06:36 +02:00
|
|
|
class DocumentStore: ObservableObject {
|
|
|
|
let blurhashImageCache = NSCache<NSString, NSData>()
|
|
|
|
let appStartUpTimestamp = Date()
|
|
|
|
var defaultRevealStatusDict: [Mastodon.Entity.Status.ID: Bool] = [:]
|
|
|
|
}
|