mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-10 19:20:59 +00:00
16 lines
539 B
Swift
16 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()
|
|
}
|
|
}
|