lux/proto/lux_data.go
2024-12-29 12:29:07 +02:00

6 lines
97 B
Go

package proto
type LuxData interface {
Read(rd *LuxBuffer) error
Write(wd *LuxBuffer) error
}