8 lines
105 B
Go
8 lines
105 B
Go
package web
|
|
|
|
// header is used to store HTTP headers.
|
|
type header struct {
|
|
Key string
|
|
Value string
|
|
}
|