File size: 320 Bytes
92d9567 | 1 2 3 4 5 6 7 8 9 10 | defmodule PerplexityMacro.Application do
use Application
@impl true
def start(_type, _args) do
children = [{PerplexityMacro.ROM, [emulator_pid: nil]}, {PerplexityMacro.Host, []}]
opts = [strategy: :one_for_one, name: PerplexityMacro.Supervisor]
Supervisor.start_link(children, opts)
end
end
|