You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
484 B
25 lines
484 B
package telegram |
|
|
|
import ( |
|
"context" |
|
|
|
"github.com/gotd/td/tg" |
|
) |
|
|
|
// SendMessage sends message to peer. |
|
// |
|
// Deprecated: use helpers like message.NewSender. |
|
func (c *Client) SendMessage(ctx context.Context, req *tg.MessagesSendMessageRequest) error { |
|
if req.RandomID == 0 { |
|
id, err := c.RandInt64() |
|
if err != nil { |
|
return err |
|
} |
|
req.RandomID = id |
|
} |
|
updates, err := c.tg.MessagesSendMessage(ctx, req) |
|
if err != nil { |
|
return err |
|
} |
|
return c.processUpdates(updates) |
|
}
|
|
|