2019-09-19 01:15:55 +02:00
|
|
|
//
|
|
|
|
// ArticleExtractorSecrets.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 9/18/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
enum ArticleExtractorConfig {
|
2019-09-24 15:17:02 +02:00
|
|
|
static let clientId = "{MERCURYID}"
|
|
|
|
static let clientSecret = "{MERCURYSECRET}"
|
|
|
|
static let clientURL = "https://extract.feedbin.com/parser"
|
2019-09-19 01:15:55 +02:00
|
|
|
}
|