micro/server/headers.go

9 lines
118 B
Go
Raw Normal View History

2015-01-14 02:31:27 +03:00
package server
type Headers interface {
Add(string, string)
Del(string)
Get(string) string
Set(string, string)
}