1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2024-12-13 00:56:23 +01:00
mastodon-app-ufficiale-ipho.../MastodonSDK/Sources/MastodonCore/Persistence/FileManager+Shared.swift

14 lines
319 B
Swift

// Copyright © 2023 Mastodon gGmbH. All rights reserved.
import Foundation
public extension FileManager {
var documentsDirectory: URL? {
urls(for: .documentDirectory, in: .userDomainMask).first
}
var cachesDirectory: URL? {
urls(for: .cachesDirectory, in: .userDomainMask).first
}
}