Implemented full tgapi method coverage from Telegram docs, aligned numeric ID/file_size types, and fixed method signatures/JSON tags.; Standardized GoDoc across exported APIs with Telegram links and refreshed README sections for MsgContext plus API/Uploader usage.
9 lines
268 B
Go
9 lines
268 B
Go
package tgapi
|
|
|
|
import "errors"
|
|
|
|
var ErrRateLimit = errors.New("rate limit exceeded")
|
|
var ErrPoolUnexpected = errors.New("unexpected response from pool")
|
|
var ErrPoolQueueFull = errors.New("worker pool queue full")
|
|
var ErrPoolStopped = errors.New("worker pool stopped")
|