9 lines
118 B
Go
9 lines
118 B
Go
|
package client
|
||
|
|
||
|
type Headers interface {
|
||
|
Add(string, string)
|
||
|
Del(string)
|
||
|
Get(string) string
|
||
|
Set(string, string)
|
||
|
}
|