2020-04-07 22:25:33 +02:00
|
|
|
//
|
|
|
|
// TwitterFeedProvider+Extensions.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 4/7/20.
|
|
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import FeedProvider
|
|
|
|
import RSCore
|
|
|
|
|
|
|
|
extension TwitterFeedProvider: ExtensionPoint {
|
|
|
|
|
2020-04-08 17:12:06 +02:00
|
|
|
var extensionPointType: ExtensionPointType {
|
|
|
|
return ExtensionPointType.twitter
|
2020-04-07 22:25:33 +02:00
|
|
|
}
|
2020-04-08 17:12:06 +02:00
|
|
|
|
|
|
|
var extensionPointID: ExtensionPointIdentifer {
|
|
|
|
return ExtensionPointIdentifer.twitter(username)
|
2020-04-07 22:25:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|