Files
mautrix-telegram/pkg/gotd/tdjson/obj.go
T
2025-06-27 20:03:37 -07:00

12 lines
247 B
Go

package tdjson
// TDLibEncoder represents TDLib JSON API encoder.
type TDLibEncoder interface {
EncodeTDLibJSON(Encoder) error
}
// TDLibDecoder represents TDLib JSON API decoder.
type TDLibDecoder interface {
DecodeTDLibJSON(Decoder) error
}