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

19 lines
435 B
Swift
Raw Normal View History

2021-04-01 08:39:15 +02:00
//
// CachedProfileViewModel.swift
// Mastodon
//
// Created by MainasuK Cirno on 2021-3-31.
//
import Foundation
import CoreDataStack
2022-10-08 07:43:06 +02:00
import MastodonCore
import MastodonSDK
2021-04-01 08:39:15 +02:00
final class CachedProfileViewModel: ProfileViewModel {
init(context: AppContext, authContext: AuthContext, mastodonUser: MastodonUserNxt) {
super.init(context: context, authContext: authContext, optionalMastodonUser: mastodonUser)
2021-04-01 08:39:15 +02:00
}
}