metatext/System/MetatextApp.swift

23 lines
677 B
Swift
Raw Normal View History

2020-07-19 02:12:32 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
2020-07-19 02:06:12 +00:00
import SwiftUI
2020-09-01 07:33:49 +00:00
import ViewModels
2020-07-19 02:06:12 +00:00
@main
struct MetatextApp: App {
2020-08-12 07:24:39 +00:00
// swiftlint:disable weak_delegate
@UIApplicationDelegateAdaptor(AppDelegate.self) private var appDelegate
// swiftlint:enable weak_delegate
2020-07-19 02:06:12 +00:00
var body: some Scene {
WindowGroup {
RootView(
2020-09-01 07:33:49 +00:00
// swiftlint:disable force_try
viewModel: try! RootViewModel(
environment: .live(userNotificationCenter: .current()),
registerForRemoteNotifications: appDelegate.registerForRemoteNotifications))
// swiftlint:enable force_try
2020-07-19 02:06:12 +00:00
}
}
}