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