Kurdtvs-Live-Kurdish-TV-Kur.../Mastodon/Scene/Search/SearchViewModel.swift

22 lines
323 B
Swift
Raw Normal View History

2021-03-31 08:28:40 +02:00
//
// 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
}
}