13 lines
452 B
Swift
13 lines
452 B
Swift
extension String {
|
|||
|
|
/// A namespace for well-known path string constants.
|
||
|
|
public enum Path {
|
||
|
|
/// The directory, relative to the working directory, that the website's static files are served from.
|
||
|
|
public static let staticResources = "Resources/Static"
|
||
|
|
}
|
||
|
|
/// A namespace for the server string constants.
|
||
|
|
public enum Server {
|
||
|
|
/// The website server's name.
|
||
|
|
public static let name = "LoudWebsite"
|
||
|
|
}
|
||
|
|
}
|