NetNewsWire/Frameworks/FeedProvider/FeedProvider.swift

23 lines
383 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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
}
protocol FeedProvider {
}