mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-30 10:44:59 +01:00
15 lines
262 B
Swift
15 lines
262 B
Swift
//
|
|
// ArticleManager.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Maurice Parker on 7/9/20.
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Articles
|
|
|
|
protocol ArticleManager: class {
|
|
var currentArticle: Article? { get }
|
|
}
|