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