import SwiftUI
import AppIntents

@main
struct TestIntent1App: App {
   init() {
      let appData = ApplicationData.shared
      AppDependencyManager.shared.add { appData }

      TestIntentsShortcuts.updateAppShortcutParameters()
   }
   var body: some Scene {
      WindowGroup {
         ContentView()
      }
   }
}