mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-27 13:25:40 +00:00
7 lines
76 B
Go
7 lines
76 B
Go
package framing
|
|
|
|
type Framer interface {
|
|
Frame([]byte) [][]byte
|
|
Clear()
|
|
}
|