Implemented the RedirectURIUseCase use case in the library target.

This commit is contained in:
2025-09-24 17:29:18 +02:00
parent 1b9973230d
commit c2c603a810
4 changed files with 262 additions and 7 deletions
@@ -0,0 +1,20 @@
// ===----------------------------------------------------------------------===
//
// This source file is part of the Hummingbird DocC Middleware open source project
//
// Copyright (c) 2025 Röck+Cöde VoF. and the Hummingbird DocC Middleware project authors
// Licensed under the EUPL 1.2 or later.
//
// See LICENSE for license information
// See CONTRIBUTORS for the list of Hummingbird DocC Middleware project authors
//
// ===----------------------------------------------------------------------===
extension String {
// MARK: Constants
/// A URI path to use as a redirection sample.
static let uriRedirection = "/some/redirect/path"
}