Add new SecretKey file to .gitignore.

This commit is contained in:
Brent Simmons 2024-07-07 15:37:19 -07:00
parent 308c612571
commit 6c9f9e2889
2 changed files with 1 additions and 17 deletions

1
.gitignore vendored
View File

@ -73,4 +73,5 @@ fastlane/test_output
/Shared/Secrets.swift
/Frameworks/Secrets/Secrets.swift
Secrets/Sources/Secrets/Secrets.swift
Modules/Secrets/Sources/Secrets/SecretKey.swift
*.py[cod]

View File

@ -1,17 +0,0 @@
//
// SecretsProvider.swift
//
//
// Created by Maurice Parker on 7/30/20.
//
import Foundation
public protocol SecretsProvider {
var mercuryClientID: String { get }
var mercuryClientSecret: String { get }
var feedlyClientID: String { get }
var feedlyClientSecret: String { get }
var inoreaderAppID: String { get }
var inoreaderAppKey: String { get }
}