| 12345678910111213141516171819 |
- //
- // IntentHandler.swift
- // RecordIntent
- //
- // Created by Destiny on 2024/11/19.
- //
- import Intents
- class IntentHandler: INExtension {
-
- override func handler(for intent: INIntent) -> Any {
- // This is the default implementation. If you want different objects to handle different intents,
- // you can override this and return the handler you want for that particular intent.
-
- return self
- }
-
- }
|