Packages

A modern IRC client library for Elixir. Fork of exirc, actively maintained.

Current section

Files

Jump to
exirc_next lib exirc whois.ex
Raw

lib/exirc/whois.ex

defmodule ExIRC.Whois do
@moduledoc """
Struct representing the result of an IRC WHOIS query.
"""
defstruct account_name: nil,
channels: [],
helpop?: false,
hostname: nil,
idling_time: 0,
ircop?: false,
nick: nil,
name: nil,
registered_nick?: false,
server_address: nil,
server_name: nil,
signon_time: 0,
ssl?: false,
user: nil
end