aeus/metadata/types.go

18 lines
268 B
Go

package metadata
const (
RequestIDKey = "X-AEUS-Request-ID"
RequestPathKey = "X-AEUS-Request-Path"
RequestProtocolKey = "X-AEUS-Request-Protocol"
)
type (
TeeReader interface {
Get(string) string
}
TeeWriter interface {
Set(string, string)
}
)