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

14 lines
260 B
Go

package encoding
import "bytes"
type UCS2Coder struct{}
func (c *UCS2Coder) Encode(s string, buf *bytes.Buffer) {
panic("UCS2 not implemented yet")
}
func (c *UCS2Coder) Decode(buf *bytes.Buffer) string {
panic("UCS2 not implemented yet")
}