-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
cfg.go
42 lines (34 loc) · 868 Bytes
/
cfg.go
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
37
38
39
40
41
42
package telegram
import (
"context"
"go.uber.org/zap"
"github.com/gotd/td/tg"
)
// Available MTProto default server addresses.
//
// See https://my.telegram.org/apps.
const (
AddrProduction = "149.154.167.50:443"
AddrTest = "149.154.167.40:443"
)
// Test-only credentials. Can be used with AddrTest and TestAuth to
// test authentication.
//
// Reference:
// * https://github.com/telegramdesktop/tdesktop/blob/5f665b8ecb48802cd13cfb48ec834b946459274a/docs/api_credentials.md
const (
TestAppID = 17349
TestAppHash = "344583e45741c457fe1862106095a5eb"
)
// Config returns current config.
func (c *Client) Config() tg.Config {
return c.cfg.Load()
}
func (c *Client) fetchConfig(ctx context.Context) {
cfg, err := c.tg.HelpGetConfig(ctx)
if err != nil {
c.log.Warn("Got error on config update", zap.Error(err))
return
}
c.cfg.Store(*cfg)
}