diff options
author | Wim <wim@42.be> | 2017-12-19 23:15:03 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2017-12-19 23:15:03 +0100 |
commit | 265457b45171dcae96a1aac9454e3bda2cd0557a (patch) | |
tree | 35342a6b83e01b708b20442378799c7692fdf519 /bridge/steam/steam.go | |
parent | 4a4a29c9f6fe202cf4379c0df2ba313848bb8d11 (diff) | |
download | matterbridge-msglm-265457b45171dcae96a1aac9454e3bda2cd0557a.tar.gz matterbridge-msglm-265457b45171dcae96a1aac9454e3bda2cd0557a.tar.bz2 matterbridge-msglm-265457b45171dcae96a1aac9454e3bda2cd0557a.zip |
Refactor and add MediaDownloadSize to General
Diffstat (limited to 'bridge/steam/steam.go')
-rw-r--r-- | bridge/steam/steam.go | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/bridge/steam/steam.go b/bridge/steam/steam.go index 7eaef46a..51e15c5b 100644 --- a/bridge/steam/steam.go +++ b/bridge/steam/steam.go @@ -16,11 +16,9 @@ import ( type Bsteam struct { c *steam.Client connected chan struct{} - Config *config.Protocol - Remote chan config.Message - Account string userMap map[steamid.SteamId]string sync.RWMutex + *config.BridgeConfig } var flog *log.Entry @@ -30,11 +28,8 @@ func init() { flog = log.WithFields(log.Fields{"module": protocol}) } -func New(cfg config.Protocol, account string, c chan config.Message) *Bsteam { - b := &Bsteam{} - b.Config = &cfg - b.Remote = c - b.Account = account +func New(cfg *config.BridgeConfig) *Bsteam { + b := &Bsteam{BridgeConfig: cfg} b.userMap = make(map[steamid.SteamId]string) b.connected = make(chan struct{}) return b |