| 20 | ) |
| 21 | |
| 22 | type Bxmpp struct { |
| 23 | *bridge.Config |
| 24 | |
| 25 | startTime time.Time |
| 26 | xc *xmpp.Client |
| 27 | xmppMap map[string]string |
| 28 | connected bool |
| 29 | sync.RWMutex |
| 30 | |
| 31 | avatarAvailability map[string]bool |
| 32 | avatarMap map[string]string |
| 33 | } |
| 34 | |
| 35 | func New(cfg *bridge.Config) bridge.Bridger { |
| 36 | return &Bxmpp{ |
nothing calls this directly
no outgoing calls
no test coverage detected