Stub out Intents Extension

This commit is contained in:
Maurice Parker
2019-10-18 18:31:00 -05:00
parent d26186ee9b
commit c49867cfe3
7 changed files with 298 additions and 16 deletions

View File

@@ -0,0 +1,22 @@
//
// 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) {
}
}