forked from zelo72/mastodon-ios
25 lines
483 B
Swift
25 lines
483 B
Swift
|
//
|
||
|
// SearchViewController.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by MainasuK Cirno on 2021-2-23.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
final class SearchViewController: UIViewController, NeedsDependency {
|
||
|
|
||
|
weak var context: AppContext! { willSet { precondition(!isViewLoaded) } }
|
||
|
weak var coordinator: SceneCoordinator! { willSet { precondition(!isViewLoaded) } }
|
||
|
|
||
|
}
|
||
|
|
||
|
extension SearchViewController {
|
||
|
|
||
|
override func viewDidLoad() {
|
||
|
super.viewDidLoad()
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|