2019-09-28 06:44:58 +02:00
|
|
|
//
|
|
|
|
// FeedWranglerConfig.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Jonathan Bennett on 9/27/19.
|
|
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
enum FeedWranglerConfig {
|
2019-10-16 21:06:01 +02:00
|
|
|
static let pageSize = 100
|
2019-11-27 17:17:46 +01:00
|
|
|
static let clientKey = Secrets.feedWranglerKey // Add FEED_WRANGLER_KEY = XYZ to SharedXcodeSettings/DeveloperSettings.xcconfig
|
2019-09-28 06:44:58 +02:00
|
|
|
static let clientPath = "https://feedwrangler.net/api/v2/"
|
|
|
|
static let clientURL = {
|
|
|
|
URL(string: FeedWranglerConfig.clientPath)!
|
|
|
|
}()
|
|
|
|
}
|