12 lines
155 B
Go
12 lines
155 B
Go
|
|
package http2interop
|
||
|
|
|
||
|
|
import (
|
||
|
|
"io"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Frame interface {
|
||
|
|
GetHeader() *FrameHeader
|
||
|
|
ParsePayload(io.Reader) error
|
||
|
|
MarshalBinary() ([]byte, error)
|
||
|
|
}
|