mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
18 lines
786 B
Swift
18 lines
786 B
Swift
import Defaults
|
|
|
|
extension Defaults.Keys {
|
|
static let instances = Key<[Instance]>("instances", default: [
|
|
.init(app: .piped, name: "Public", url: "https://pipedapi.kavin.rocks"),
|
|
.init(app: .invidious, name: "Private", url: "https://invidious.home.arekf.net")
|
|
])
|
|
static let accounts = Key<[Instance.Account]>("accounts", default: [])
|
|
static let defaultAccountID = Key<String?>("defaultAccountID")
|
|
|
|
static let quality = Key<Stream.ResolutionSetting>("quality", default: .hd720pFirstThenBest)
|
|
|
|
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
|
|
|
|
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
|
|
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
|
|
}
|