1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Shared/Defaults.swift

18 lines
786 B
Swift
Raw Normal View History

2021-06-27 04:59:55 +05:30
import Defaults
2021-09-19 16:36:54 +05:30
extension Defaults.Keys {
2021-10-17 04:18:58 +05:30
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: [])
2021-09-27 03:33:33 +05:30
static let defaultAccountID = Key<String?>("defaultAccountID")
2021-09-25 13:48:22 +05:30
static let quality = Key<Stream.ResolutionSetting>("quality", default: .hd720pFirstThenBest)
2021-09-19 16:36:54 +05:30
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
2021-09-19 16:36:54 +05:30
}