Packages

An Elixir double-entry library inspired by Ruby's DoubleEntry. Brought to you by CoinJar.

Current section

Files

Jump to
ex_double_entry lib ex_double_entry application.ex
Raw

lib/ex_double_entry/application.ex

defmodule ExDoubleEntry.Application do
use Application
@impl true
def start(_type, _args) do
children = [
ExDoubleEntry.Repo
]
opts = [strategy: :one_for_one, name: ExDoubleEntry.Supervisor]
Supervisor.start_link(children, opts)
end
end