2017-05-27 10:43:27 -07:00
|
|
|
//
|
|
|
|
// DefaultFeedsImporter.swift
|
2018-08-28 22:18:24 -07:00
|
|
|
// NetNewsWire
|
2017-05-27 10:43:27 -07:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 8/13/15.
|
|
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2017-09-17 12:34:10 -07:00
|
|
|
import Account
|
2017-11-15 13:26:10 -08:00
|
|
|
import RSCore
|
2017-05-27 10:43:27 -07:00
|
|
|
|
2017-09-24 22:35:57 -07:00
|
|
|
struct DefaultFeedsImporter {
|
2017-05-27 10:43:27 -07:00
|
|
|
|
2019-10-17 13:25:11 -07:00
|
|
|
static func importDefaultFeeds(account: Account) {
|
2019-03-14 22:23:16 -07:00
|
|
|
let defaultFeedsURL = Bundle.main.url(forResource: "DefaultFeeds", withExtension: "opml")!
|
2019-05-11 12:26:23 -05:00
|
|
|
AccountManager.shared.defaultAccount.importOPML(defaultFeedsURL) { result in }
|
2017-05-27 10:43:27 -07:00
|
|
|
}
|
2020-06-28 03:05:01 -05:00
|
|
|
|
2017-05-27 10:43:27 -07:00
|
|
|
}
|
|
|
|
|