Implemented the ServeResourceUseCase use case in the library target.

This commit is contained in:
2025-09-25 01:38:48 +02:00
parent 04d1ca6a26
commit ff56875a24
6 changed files with 385 additions and 9 deletions
@@ -14,7 +14,15 @@ extension String {
// MARK: Constants
/// A URI path to use as a redirection sample.
static let uriRedirection = "/some/redirect/path"
/// A namespace that defines sample values.
enum Sample {
/// A URI path to use as a file sample.
static let uriFile = uriFolder + uriResource
/// A URI path to use as a folder sample.
static let uriFolder = "/some/folder/path"
/// A URI path to use as a redirection sample.
static let uriRedirection = "/some/redirect/path"
/// A URI path to use as a resource sample.
static let uriResource = "/some/path/to/resource"
}
}