1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-11-29 21:47:44 +02:00
Files
go-micro/server/headers.go

9 lines
118 B
Go
Raw Normal View History

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