Files
smpp-tester/encoding/coder.go
2024-07-31 13:14:37 +02:00

8 lines
152 B
Go

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