mirror of
https://github.com/yattee/yattee.git
synced 2025-08-06 18:54:11 +00:00
Subscribed channels cache
This commit is contained in:
17
Model/Cache/BookmarksCacheModel.swift
Normal file
17
Model/Cache/BookmarksCacheModel.swift
Normal file
@@ -0,0 +1,17 @@
|
||||
import Cache
|
||||
import Foundation
|
||||
import Logging
|
||||
import SwiftyJSON
|
||||
|
||||
struct BookmarksCacheModel {
|
||||
static var shared = BookmarksCacheModel()
|
||||
let logger = Logger(label: "stream.yattee.cache")
|
||||
|
||||
static let bookmarksGroup = "group.stream.yattee.app.bookmarks"
|
||||
let defaults = UserDefaults(suiteName: Self.bookmarksGroup)
|
||||
|
||||
func clear() {
|
||||
guard let defaults else { return }
|
||||
defaults.dictionaryRepresentation().keys.forEach(defaults.removeObject(forKey:))
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user