Current section

Files

Jump to
lcd_display lib application.ex
Raw

lib/application.ex

defmodule LcdDisplay.Application do
@moduledoc false
use Application
require Logger
def start(_type, _args) do
Logger.debug("#{__MODULE__} starting")
children = []
opts = [strategy: :one_for_one, name: LcdDisplay.Supervisor]
Supervisor.start_link(children, opts)
end
def stop(_state) do
Logger.debug("#{__MODULE__} stopping")
end
end