struct TestIntentsShortcuts: AppShortcutsProvider {
   static var appShortcuts: [AppShortcut] {
      AppShortcut(
         intent: ShowMovie(),
         phrases: [
            "Show me a movie in \(.applicationName)",
            "Show me the movie I \(\.$movieType) in \(.applicationName)"
         ],
         shortTitle: LocalizedStringResource("Get Movie"),
         systemImageName: "star.circle"
      )
   }
}