// // 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) { } }