NetNewsWire/Shared/ExtensionPoints/ExtensionPoint.swift

26 lines
415 B
Swift
Raw Normal View History

2020-04-07 22:25:33 +02:00
//
// ExtensionPoint.swift
// NetNewsWire
//
// Created by Maurice Parker on 4/7/20.
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import Foundation
import RSCore
protocol ExtensionPoint {
var extensionPointType: ExtensionPointType { get }
var extensionPointID: ExtensionPointIdentifer { get }
}
2020-04-07 22:25:33 +02:00
extension ExtensionPoint {
var title: String {
return extensionPointID.title
}
2020-04-07 22:25:33 +02:00
}