aboutsummaryrefslogtreecommitdiff
path: root/appservice/account.go
blob: 533e01ebcc93b3ec4d9f1e56ea03019e92e58bff (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
package appservice

import (
	. "git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
)

type Account struct {
	MatrixUser string
	AccountName string
	Protocol string
	Conn Connector
}

func (a *Account) Joined(roomId RoomID) {
	// TODO
}

func (a *Account) Left(roomId RoomID) {
	// TODO
}

func (a *Account) UserInfoUpdated(user UserID, info *UserInfo) {
	// TODO
}

func (a *Account) RoomInfoUpdated(roomId RoomID, info *RoomInfo) {
	// TODO
}

func (a *Account) Event(event *Event) {
	// TODO
}