| 12345678910111213141516171819 |
- //
- // LNPathConfig.swift
- // Lanu
- //
- // Created by OneeChan on 2025/12/9.
- //
- import Foundation
- extension URL {
- static let voiceRecordCacheFolderName = "VoiceRecord"
- static let voiceRecordCacheFolder = URL.cacheDir.appendingPathComponent(voiceRecordCacheFolderName)
-
- static let voiceCacheFolderName = "Sounds"
- static let voiceCacheFolder = URL.cacheDir.appendingPathComponent(voiceCacheFolderName)
-
- static let imageCacheFolderName = "Images"
- static let imageCacheFolder = URL.cacheDir.appendingPathComponent(imageCacheFolderName)
- }
|