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