2026-06-27 10:59:32 +00:00
|
|
|
import Configuration
|
|
|
|
|
|
|
|
|
|
extension ConfigValue {
|
|
|
|
|
/// A namespace for the HTTP server's default configuration values.
|
|
|
|
|
public enum HTTP {
|
|
|
|
|
/// The default server name.
|
|
|
|
|
public static let serverName: ConfigValue = .init(stringLiteral: .Server.name)
|
|
|
|
|
}
|
|
|
|
|
}
|