mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-11 17:18:28 +02:00
9 lines
118 B
Go
9 lines
118 B
Go
package server
|
|
|
|
type Headers interface {
|
|
Add(string, string)
|
|
Del(string)
|
|
Get(string) string
|
|
Set(string, string)
|
|
}
|