This repository has been archived on 2024-07-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
go-playit/proto/encoding.go
2024-05-24 23:28:31 -03:00

11 lines
125 B
Go

package proto
import (
"io"
)
type MessageEncoding interface {
ReadFrom(r io.Reader) error
WriteTo(w io.Writer) error
}