IceCubesApp/IceCubesAppIntents/PostIntent.swift
2024-05-05 13:12:19 +02:00

17 lines
539 B
Swift

import AppIntents
import Foundation
struct PostIntent: AppIntent {
static let title: LocalizedStringResource = "Compose a post to Mastodon"
static let description: IntentDescription = "Use Ice Cubes to compose a post for Mastodon"
static let openAppWhenRun: Bool = true
@Parameter(title: "Post content", inputConnectionBehavior: .connectToPreviousIntentResult)
var content: String?
func perform() async throws -> some IntentResult {
AppIntentService.shared.handledIntent = .init(intent: self)
return .result()
}
}