aboutsummaryrefslogtreecommitdiff
path: root/lib/exping/application.ex
blob: 33fce39b5ea3097e8b8db11c43b6dee8a78bdf7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
defmodule ExPing.Application do
  use Application
  @moduledoc """
  Application definition for ExPing
  """

  @doc """
  Start ExPing OTP Application
  """
  @spec start(any, any) :: {:ok, pid} | {:error, any}
  def start(_, _) do
    ExPing.Supervisor.start_link()
  end
end