diff options
author | Hubert Hirtz <hubert.hirtz@laposte.net> | 2020-06-03 19:03:58 +0200 |
---|---|---|
committer | Hubert Hirtz <hubert.hirtz@laposte.net> | 2020-06-03 19:03:58 +0200 |
commit | 9a732d4de4d1e82fadd5270837201819d78adb62 (patch) | |
tree | 851d91be3c3147e19a52e500a2d6189f40eaaa00 /irc/events.go | |
parent | Initial commit (diff) |
Part Join Typing
Diffstat (limited to 'irc/events.go')
-rw-r--r-- | irc/events.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/irc/events.go b/irc/events.go index 2cd5214..c2af056 100644 --- a/irc/events.go +++ b/irc/events.go @@ -34,6 +34,15 @@ type UserJoinEvent struct { ChannelEvent } +type SelfPartEvent struct { + ChannelEvent +} + +type UserPartEvent struct { + UserEvent + ChannelEvent +} + type SelfJoinEvent struct { ChannelEvent } |