Add feedIconsFolder location.

This commit is contained in:
Brent Simmons 2024-06-26 23:20:13 -07:00
parent 83edb628ae
commit b3e6a6501a

View File

@ -33,6 +33,10 @@ import Foundation
public static var imagesFolder: URL = {
return createSubfolder(named: "Images", in: cacheFolder)
}()
public static var feedIconsFolder: URL = {
return createSubfolder(named: "FeedIcons", in: cacheFolder)
}()
}
private extension AppLocations {