api/api.go

7 lines
115 B
Go
Raw Normal View History

2023-09-05 19:54:58 +00:00
package api
type ProtoMessage interface {
UnmarshalVT(dAtA []byte) error
MarshalVT() (dAtA []byte, err error)
}