10 lines
126 B
Swift
10 lines
126 B
Swift
|
import Foundation
|
||
|
|
||
|
protocol FileServicing {
|
||
|
|
||
|
// MARK: Properties
|
||
|
|
||
|
var currentFolder: URL { get async }
|
||
|
|
||
|
}
|