mastodon-app-ufficiale-ipho.../Mastodon/Scene/Profile/CachedProfileViewModel.swift

19 lines
435 B
Swift

//
// CachedProfileViewModel.swift
// Mastodon
//
// Created by MainasuK Cirno on 2021-3-31.
//
import Foundation
import CoreDataStack
import MastodonCore
import MastodonSDK
final class CachedProfileViewModel: ProfileViewModel {
init(context: AppContext, authContext: AuthContext, mastodonUser: MastodonUserNxt) {
super.init(context: context, authContext: authContext, optionalMastodonUser: mastodonUser)
}
}