Implemented the CreatedRootFolderTask task in the Library target.

This commit is contained in:
2025-01-11 18:40:09 +01:00
parent 3f98d08a00
commit af1703e6c1
5 changed files with 119 additions and 19 deletions
@@ -0,0 +1,16 @@
import Foundation
@testable import ColibriLibrary
extension URL {
// MARK: Constants
static let someCurrentFolder = URL(at: "/some/current/folder")
static let someExistingFolder = URL(at: "/some/existing/folder")
static let someExistingFile = URL(at: "/some/existing/file")
static let someNewFolder = URL(at: "/some/new/folder")
static let someNewFile = URL(at: "/some/new/file")
static let someRandomURL = URL(string: "some.random.url")!
}