summaryrefslogtreecommitdiff
path: root/lib/app.ex
blob: 489008aa379794987e88e43cab778c814b4d49fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
defmodule ExIrc.App do
  @moduledoc """
  Entry point for the ExIrc application.
  """
  use Application

  def start(_type, _args) do
    ExIrc.start!
  end
end