defmodule Scopes.Demo.Application do use Application alias Scopes.Util require Logger require Util @impl true def start(type, args) do IO.puts("Hello World") Logger.info(Util.show [type, args]) children = [ Scopes.Web.Server.Endpoint ] opts = [strategy: :one_for_one, name: Scopes.Supervisor] Supervisor.start_link(children, opts) end end