zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

application.ex (258B)


      1 defmodule Ecto.Application do
      2   @moduledoc false
      3   use Application
      4 
      5   def start(_type, _args) do
      6     children = [
      7       Ecto.Repo.Registry,
      8     ]
      9 
     10     opts = [strategy: :one_for_one, name: Ecto.Supervisor]
     11     Supervisor.start_link(children, opts)
     12   end
     13 end