Packages

Observables in the spirit of Reactive Extensions for Elixir, extended with advanced primitives for combination and classic reactive programming.

Current section

Files

Jump to
observables_extended lib application.ex
Raw

lib/application.ex

defmodule Observables.Application do
@moduledoc false
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
supervisor(Observables.Supervisor, [])
]
Supervisor.start_link(children, strategy: :one_for_one, name: __MODULE__)
end
end