Files
micro/codec/frame.go
2021-03-11 07:42:42 +03:00

7 lines
122 B
Go

package codec
// Frame gives us the ability to define raw data to send over the pipes
type Frame struct {
Data []byte
}