Packages

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

Current section

Files

Jump to
exirc_next lib exirc who.ex
Raw

lib/exirc/who.ex

defmodule ExIRC.Who do
@moduledoc """
Struct representing the result of an IRC WHO query.
"""
defstruct admin?: nil,
away?: nil,
founder?: nil,
half_operator?: nil,
hops: nil,
host: nil,
name: nil,
nick: nil,
operator?: nil,
server: nil,
server_operator?: nil,
user: nil,
voiced?: nil
end