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