18 lines
346 B
Swift
18 lines
346 B
Swift
//
|
|
// CachedProfileViewModel.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK Cirno on 2021-3-31.
|
|
//
|
|
|
|
import Foundation
|
|
import CoreDataStack
|
|
|
|
final class CachedProfileViewModel: ProfileViewModel {
|
|
|
|
init(context: AppContext, mastodonUser: MastodonUser) {
|
|
super.init(context: context, optionalMastodonUser: mastodonUser)
|
|
}
|
|
|
|
}
|