Files
ccn/Services/Website/Sources/Library/Public/Extensions/String+Constants.swift
T

13 lines
452 B
Swift
Raw Normal View History

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"
}
}