Moved the String format constants from the Pathable protocol in the library target into its own String+Constants extension.

This commit is contained in:
2025-03-04 23:33:29 +01:00
parent 8cbee56e98
commit 65415fad52
2 changed files with 8 additions and 9 deletions
@@ -0,0 +1,8 @@
extension String {
enum Format {
enum Path {
static let docs = "/docs/%@"
static let root = "/%@"
}
}
}