mastodon-ios/Mastodon/Scene/Search/SearchViewModel.swift

22 lines
323 B
Swift

//
// SearchViewModel.swift
// Mastodon
//
// Created by sxiaojian on 2021/3/31.
//
import Foundation
import Combine
final class SearchViewModel {
var disposeBag = Set<AnyCancellable>()
// input
let context: AppContext
init(context: AppContext) {
self.context = context
}
}