We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00a016b commit 7daa457Copy full SHA for 7daa457
lib/mpesa_elixir/application.ex
@@ -16,10 +16,11 @@ defmodule MpesaElixir.Application do
16
children = [] ++ dont_start_in_test
17
18
# Start the supervisor first
19
- {:ok, supervisor} = Supervisor.start_link(children, [
20
- strategy: :one_for_one,
21
- name: MpesaElixir.Supervisor
22
- ])
+ {:ok, supervisor} =
+ Supervisor.start_link(children,
+ strategy: :one_for_one,
+ name: MpesaElixir.Supervisor
23
+ )
24
25
# Start AuthServer as a child process of the dynamic supervisor
26
MpesaSupervisor.start_child({MpesaElixir.AuthServer, []})
0 commit comments