forked from zelo72/mastodon-ios
16 lines
309 B
Swift
16 lines
309 B
Swift
|
//
|
||
|
// CachedThreadViewModel.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by MainasuK Cirno on 2021-4-12.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import CoreDataStack
|
||
|
|
||
|
final class CachedThreadViewModel: ThreadViewModel {
|
||
|
init(context: AppContext, status: Status) {
|
||
|
super.init(context: context, optionalStatus: status)
|
||
|
}
|
||
|
}
|