summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_shovel/src/rabbit_shovel.erl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/rabbitmq_shovel/src/rabbit_shovel.erl')
-rw-r--r--deps/rabbitmq_shovel/src/rabbit_shovel.erl21
1 files changed, 21 insertions, 0 deletions
diff --git a/deps/rabbitmq_shovel/src/rabbit_shovel.erl b/deps/rabbitmq_shovel/src/rabbit_shovel.erl
new file mode 100644
index 0000000000..190a9e2051
--- /dev/null
+++ b/deps/rabbitmq_shovel/src/rabbit_shovel.erl
@@ -0,0 +1,21 @@
+%% This Source Code Form is subject to the terms of the Mozilla Public
+%% License, v. 2.0. If a copy of the MPL was not distributed with this
+%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
+%%
+%% Copyright (c) 2007-2020 VMware, Inc. or its affiliates. All rights reserved.
+%%
+
+-module(rabbit_shovel).
+
+-export([start/0, stop/0, start/2, stop/1]).
+
+start() ->
+ _ = rabbit_shovel_sup:start_link(),
+ ok.
+
+stop() -> ok.
+
+start(normal, []) ->
+ rabbit_shovel_sup:start_link().
+
+stop(_State) -> ok.