Current section
Files
Jump to
Current section
Files
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