/*
Copyright (c) [2023] [squallzhao]
fountain is licensed under APACHE LICENSE, VERSION 2.0.
You can use this software according to the terms and conditions of the APACHE LICENSE, VERSION 2.0.
You may obtain a copy of APACHE LICENSE, VERSION 2.0 at: https://www.apache.org/licenses/LICENSE-2.0
*/
package microservice.web.http11
public class HttpCommon{
public static let CONTENT_LENGTH = "Content-Length"
public static let CONTENT_TYPE = "Content-Type"
public static let CONNECTION = "Connection"
public static let GET = "GET"
public static let POST = "POST"
}