mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
26 lines
415 B
Swift
26 lines
415 B
Swift
//
|
|
// 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 }
|
|
|
|
}
|
|
|
|
extension ExtensionPoint {
|
|
|
|
var title: String {
|
|
return extensionPointID.title
|
|
}
|
|
|
|
}
|