Added draft SMS support.

This commit is contained in:
Andrey Egorov
2024-07-28 21:01:18 +03:00
parent 92d42d413a
commit ebab41c510
5 changed files with 138 additions and 3 deletions

View File

@ -15,3 +15,7 @@ func (resp Resp) RmFront(str string) Resp {
func (resp Resp) String() string {
return string(resp)
}
func (resp Resp) Bytes() []byte {
return []byte(resp)
}