2020-04-14 23:47:05 +02:00
|
|
|
//
|
|
|
|
// OAuth1SwiftProvider.swift
|
|
|
|
// Secrets
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 4/14/20.
|
|
|
|
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import OAuthSwift
|
|
|
|
|
|
|
|
public protocol OAuth1SwiftProvider {
|
|
|
|
|
|
|
|
static var oauth1Swift: OAuth1Swift { get }
|
2020-05-03 21:10:21 +02:00
|
|
|
static var callbackURL: URL { get }
|
2020-04-14 23:47:05 +02:00
|
|
|
|
|
|
|
}
|