From b3e6a6501a61629e8981546fb629e179c1340582 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Wed, 26 Jun 2024 23:20:13 -0700 Subject: [PATCH] Add feedIconsFolder location. --- AppConfig/Sources/AppConfig/AppLocations.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/AppConfig/Sources/AppConfig/AppLocations.swift b/AppConfig/Sources/AppConfig/AppLocations.swift index 2b0d2e444..1b8bba953 100644 --- a/AppConfig/Sources/AppConfig/AppLocations.swift +++ b/AppConfig/Sources/AppConfig/AppLocations.swift @@ -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 {