mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 21:05:30 +00:00
8 lines
100 B
Go
8 lines
100 B
Go
package framing
|
|
|
|
type Framer interface {
|
|
Decode([]byte) [][]byte
|
|
Encode([]byte) []byte
|
|
Clear()
|
|
}
|