LNPathConfig.swift 567 B

12345678910111213141516171819
  1. //
  2. // LNPathConfig.swift
  3. // Lanu
  4. //
  5. // Created by OneeChan on 2025/12/9.
  6. //
  7. import Foundation
  8. extension URL {
  9. static let voiceRecordCacheFolderName = "VoiceRecord"
  10. static let voiceRecordCacheFolder = URL.cacheDir.appendingPathComponent(voiceRecordCacheFolderName)
  11. static let voiceCacheFolderName = "Sounds"
  12. static let voiceCacheFolder = URL.cacheDir.appendingPathComponent(voiceCacheFolderName)
  13. static let imageCacheFolderName = "Images"
  14. static let imageCacheFolder = URL.cacheDir.appendingPathComponent(imageCacheFolderName)
  15. }