We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6eeef7 commit 4e3774cCopy full SHA for 4e3774c
lib/broadway/application.ex
@@ -0,0 +1,14 @@
1
+defmodule Broadway.Application do
2
+ use Application
3
+
4
+ def start(_type, _args) do
5
+ config_storage = Broadway.ConfigStorage.get_module()
6
7
+ if Code.ensure_loaded?(config_storage) and function_exported?(config_storage, :setup, 0) do
8
+ config_storage.setup()
9
+ end
10
11
+ opts = [strategy: :one_for_one, name: Broadway.Supervisor]
12
+ Supervisor.start_link([], opts)
13
14
+end
0 commit comments