Files
smpp-tester/encoding/coder.go
2024-07-25 16:33:31 +02:00

8 lines
136 B
Go

package encoding
import "bytes"
type Coder interface {
Encode(s string, buf *bytes.Buffer)
Decode(buf *bytes.Buffer) string
}