NetNewsWire/iOS/Intents/AddFeedIntentHandler.swift

23 lines
482 B
Swift
Raw Normal View History

2019-10-19 01:31:00 +02:00
//
// AddFeedIntentHandler.swift
// NetNewsWire
//
// Created by Maurice Parker on 10/18/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import Intents
public class AddFeedIntentHandler: NSObject, AddFeedIntentHandling {
public func handle(intent: AddFeedIntent, completion: @escaping (AddFeedIntentResponse) -> Void) {
}
public func resolveUrl(for intent: AddFeedIntent, with completion: @escaping (INURLResolutionResult) -> Void) {
}
}