aboutsummaryrefslogtreecommitdiff
path: root/interface
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-03-21 18:46:19 +0200
committerTulir Asokan <tulir@maunium.net>2018-03-21 18:46:25 +0200
commit35b6c7bd276d2a6c7f09163d757a1c3cb885da79 (patch)
tree3cda5627ce5445b0a76ee3fb72551bf326943e57 /interface
parent7994c289aae7662fee9b86f9424d230c7b612b3d (diff)
Add external debug file, refactoring and push rule parser
Diffstat (limited to 'interface')
-rw-r--r--interface/matrix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/matrix.go b/interface/matrix.go
index c40639d..459f99d 100644
--- a/interface/matrix.go
+++ b/interface/matrix.go
@@ -33,5 +33,5 @@ type MatrixContainer interface {
JoinRoom(roomID string) error
LeaveRoom(roomID string) error
GetHistory(roomID, prevBatch string, limit int) ([]gomatrix.Event, string, error)
- GetRoom(roomID string) *room.Room
+ GetRoom(roomID string) *rooms.Room
}