Concurrent Data Processing in Elixir - Should and :crypto to extra_applications (page 52)

Not a big deal but might want to mention that you should add :crypto to the extra_applications portion of mix like so:

def application do
[
extra_applications: [:logger, :crypto],
mod: {Jobber.Application, []}
]
end

1 Like