Implemented (a first version of) the DocCMiddleware middleware in the library target.

This commit is contained in:
2025-02-25 01:55:49 +01:00
parent 54aa5c70c6
commit 19a54b25ae
6 changed files with 254 additions and 0 deletions
@@ -0,0 +1,16 @@
protocol Pathable {
// MARK: Properties
var path: String { get }
}
// MARK: - String+Formats
extension String {
enum Format {
static let pathDocs = "/docs/%@"
static let pathRoot = "/%@"
}
}