blob: 72cd4170e7477b200b432513bcbd0a3a16d9991b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
package telegram
import (
"github.com/pkg/errors"
"github.com/zelenin/go-tdlib/client"
)
// Connect starts TDlib connection
func (c *Client) Connect() error {
if c.online {
return nil
}
authorizer := client.ClientAuthorizer()
authorizer.TdlibParameters <- c.parameters
tdlibClient, err := client.NewClient(authorizer, c.logVerbosity)
if err != nil {
return errors.Wrap(err, "Coudn't initialize a Telegram client instance")
}
c.client = tdlibClient
c.online = true
go updateHandler(c.client)
return nil
}
// Disconnect drops TDlib connection
func (c *Client) Disconnect() {
if !c.online {
return
}
}
|