router/body.go

10 lines
107 B
Go

package router
type body interface {
mustEmbedBody()
}
type Body []byte
func (Body) mustEmbedBody() {}