22 lines
544 B
Swift
22 lines
544 B
Swift
//
|
|
// CachedThreadViewModel.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-4-12.
|
|
//
|
|
|
|
import Foundation
|
|
import CoreDataStack
|
|
import MastodonCore
|
|
|
|
final class CachedThreadViewModel: ThreadViewModel {
|
|
init(context: AppContext, authContext: AuthContext, status: Status) {
|
|
let threadContext = StatusItem.Thread.Context(status: .init(objectID: status.objectID))
|
|
super.init(
|
|
context: context,
|
|
authContext: authContext,
|
|
optionalRoot: .root(context: threadContext)
|
|
)
|
|
}
|
|
}
|