FreeAPSApp.swift 292 B

1234567891011121314
  1. import SwiftUI
  2. @main struct FreeAPSApp: App {
  3. @SceneBuilder var body: some Scene {
  4. WindowGroup {
  5. NavigationView {
  6. MainView()
  7. }
  8. }
  9. WKNotificationScene(controller: NotificationController.self, category: "myCategory")
  10. }
  11. }