Skip to content

Commit 4e3774c

Browse files
committed
Add pending module
1 parent b6eeef7 commit 4e3774c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

lib/broadway/application.ex

+14
Original file line numberDiff line numberDiff line change
@@ -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+
end
14+
end

0 commit comments

Comments
 (0)