diff options
Diffstat (limited to 'bridge/config/config.go')
-rw-r--r-- | bridge/config/config.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bridge/config/config.go b/bridge/config/config.go index c577e340..d3d88115 100644 --- a/bridge/config/config.go +++ b/bridge/config/config.go @@ -8,12 +8,17 @@ import ( "strings" ) +const ( + EVENT_JOIN_LEAVE = "join_leave" +) + type Message struct { Text string Channel string Username string Avatar string Account string + Event string } type Protocol struct { |