IceCubesApp/IceCubesAppIntents/AppIntentService.swift
Thomas Ricouard c3edabb183 Lint
2024-05-04 13:19:19 +02:00

26 lines
528 B
Swift

import AppIntents
import SwiftUI
@Observable
public class AppIntentService: @unchecked Sendable {
struct HandledIntent: Equatable {
static func == (lhs: AppIntentService.HandledIntent, rhs: AppIntentService.HandledIntent) -> Bool {
lhs.id == rhs.id
}
let id: String
let intent: any AppIntent
init(intent: any AppIntent) {
id = UUID().uuidString
self.intent = intent
}
}
public static let shared = AppIntentService()
var handledIntent: HandledIntent?
private init() {}
}