diff options
author | Hubert Hirtz <hubert.hirtz@laposte.net> | 2020-06-03 23:05:44 +0200 |
---|---|---|
committer | Hubert Hirtz <hubert.hirtz@laposte.net> | 2020-06-03 23:05:44 +0200 |
commit | 31b8f90aa0c75f52d03db7ca9fba41bddb8429fa (patch) | |
tree | 1db2ad54aedfafe8a50fd0fff56fdfa5cab3933a /irc/events.go | |
parent | Nick colors (diff) |
Show JOIN and PARTs
Diffstat (limited to 'irc/events.go')
-rw-r--r-- | irc/events.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/irc/events.go b/irc/events.go index c2af056..96bf786 100644 --- a/irc/events.go +++ b/irc/events.go @@ -32,6 +32,7 @@ func (c ChannelEvent) ChannelMapped() (channel string) { type UserJoinEvent struct { UserEvent ChannelEvent + Time time.Time } type SelfPartEvent struct { @@ -41,6 +42,7 @@ type SelfPartEvent struct { type UserPartEvent struct { UserEvent ChannelEvent + Time time.Time } type SelfJoinEvent struct { |