mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-13 00:56:23 +01:00
14 lines
319 B
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
|
|
}
|
|
}
|