Packages

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

Current section

Files

Jump to
exirc_next lib app.ex
Raw

lib/app.ex

defmodule ExIRC.App do
@moduledoc """
Entry point for the ExIRC application.
"""
use Application
def start(_type, _args) do
ExIRC.start!()
end
end