change internals to internal

This commit is contained in:
Joel Wetzell
2025-11-21 07:35:41 -06:00
parent d1d00237b0
commit fe2a54d4cd
12 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
package framing
type Framer interface {
Decode([]byte) [][]byte
Encode([]byte) []byte
Clear()
}