// // 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) } }