9 lines
109 B
Elixir
9 lines
109 B
Elixir
|
defmodule App do
|
||
|
use Application
|
||
|
|
||
|
@impl true
|
||
|
def start(_type, _args) do
|
||
|
Sup.start_link()
|
||
|
end
|
||
|
end
|