16 lines
358 B
Swift
16 lines
358 B
Swift
//
|
|
// ArticleExtractorSecrets.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Maurice Parker on 9/18/19.
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum ArticleExtractorConfig {
|
|
static let clientId = "{MERCURYID}"
|
|
static let clientSecret = "{MERCURYSECRET}"
|
|
static let clientURL = "https://extract.feedbin.com/parser"
|
|
}
|