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