summaryrefslogblamecommitdiff
path: root/lib/app.ex
blob: 4cb59595440ddc92462c15dfd94fecf2a1d99cb4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                      
                
                                        
     
                 

                            
                
     
   
defmodule ExIRC.App do
  @moduledoc """
  Entry point for the ExIRC application.
  """
  use Application

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