Packages

The component framework is meant to make it easy to decompose an application into many simple services. It does this by eliminating boilerplate code in common service patterns: source files can be just domain logic. See the GitHub repo for details.

Current section

Files

Jump to
component lib component application.ex
Raw

lib/component/application.ex

defmodule Component.Application do
use Application
def start(_type, _args) do
# children = [ ]
# opts = [strategy: :one_for_one, name: Component.Supervisor]
# Supervisor.start_link(children, opts)
{ :ok, self() }
end
end