summaryrefslogtreecommitdiffstats
path: root/bridge/telegram
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/telegram')
-rw-r--r--bridge/telegram/telegram.go14
1 files changed, 4 insertions, 10 deletions
diff --git a/bridge/telegram/telegram.go b/bridge/telegram/telegram.go
index 650eec12..95492a88 100644
--- a/bridge/telegram/telegram.go
+++ b/bridge/telegram/telegram.go
@@ -12,10 +12,8 @@ import (
)
type Btelegram struct {
- c *tgbotapi.BotAPI
- Config *config.Protocol
- Remote chan config.Message
- Account string
+ c *tgbotapi.BotAPI
+ *config.BridgeConfig
}
var flog *log.Entry
@@ -25,12 +23,8 @@ func init() {
flog = log.WithFields(log.Fields{"module": protocol})
}
-func New(cfg config.Protocol, account string, c chan config.Message) *Btelegram {
- b := &Btelegram{}
- b.Config = &cfg
- b.Remote = c
- b.Account = account
- return b
+func New(cfg *config.BridgeConfig) *Btelegram {
+ return &Btelegram{BridgeConfig: cfg}
}
func (b *Btelegram) Connect() error {