summaryrefslogtreecommitdiff
path: root/lib/exirc/whois.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/exirc/whois.ex')
-rw-r--r--lib/exirc/whois.ex18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/exirc/whois.ex b/lib/exirc/whois.ex
new file mode 100644
index 0000000..fb14e63
--- /dev/null
+++ b/lib/exirc/whois.ex
@@ -0,0 +1,18 @@
+defmodule Irc.Whois do
+ defstruct [account_name: nil,
+ channels: [],
+ helpop?: false,
+ hostname: nil,
+ idling_time: 0,
+ ircop?: false,
+ nickname: nil,
+ realname: nil,
+ registered_nick?: false,
+ server_address: nil,
+ server_name: nil,
+ signon_time: 0,
+ tls?: false,
+ username: nil,
+ ]
+end
+