mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
23 lines
482 B
Swift
23 lines
482 B
Swift
//
|
|
// 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) {
|
|
|
|
}
|
|
|
|
|
|
}
|