NetNewsWire/Frameworks/FeedProvider/FeedProvider.swift

23 lines
383 B
Swift
Raw Normal View History

2020-04-07 04:06:42 +02:00
//
// FeedProvider.swift
// FeedProvider
//
// Created by Maurice Parker on 4/6/20.
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
//
import Foundation
import RSCore
public enum FeedProviderType: Int, Codable {
// Raw values should not change since theyre stored.
case marsEdit = 1
case microblog = 2
case twitter = 3
2020-04-07 04:06:42 +02:00
}
protocol FeedProvider {
}