aboutsummaryrefslogtreecommitdiff
path: root/connector/connector.go
diff options
context:
space:
mode:
Diffstat (limited to 'connector/connector.go')
-rw-r--r--connector/connector.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/connector/connector.go b/connector/connector.go
index 3a2e20c..38ce828 100644
--- a/connector/connector.go
+++ b/connector/connector.go
@@ -136,12 +136,12 @@ type UserInfo struct {
// If non-empty, the Filename of the avatar object will be used by Easybridge
// to deduplicate the update events and prevent needless reuploads.
// Example strategy that works for the mattermost backend: use the update timestamp as fictious file name
- Avatar MediaObject
+ Avatar MediaObject
}
type RoomInfo struct {
- Name string
- Topic string
+ Name string
+ Topic string
// Same deduplication comment as for UserInfo.Avatar
Picture MediaObject
@@ -164,6 +164,6 @@ type MediaObject interface {
}
type ImageSize struct {
- Width int
+ Width int
Height int
}