summaryrefslogtreecommitdiff
path: root/deps/netlink/src/netlink_app.erl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/netlink/src/netlink_app.erl')
-rw-r--r--deps/netlink/src/netlink_app.erl25
1 files changed, 25 insertions, 0 deletions
diff --git a/deps/netlink/src/netlink_app.erl b/deps/netlink/src/netlink_app.erl
new file mode 100644
index 0000000..6bb292b
--- /dev/null
+++ b/deps/netlink/src/netlink_app.erl
@@ -0,0 +1,25 @@
+%%%---- BEGIN COPYRIGHT -------------------------------------------------------
+%%%
+%%% Copyright (C) 2012 Feuerlabs, Inc. All rights reserved.
+%%%
+%%% 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 http://mozilla.org/MPL/2.0/.
+%%%
+%%%---- END COPYRIGHT ---------------------------------------------------------
+-module(netlink_app).
+
+-behaviour(application).
+
+%% Application callbacks
+-export([start/2, stop/1]).
+
+%% ===================================================================
+%% Application callbacks
+%% ===================================================================
+
+start(_StartType, _StartArgs) ->
+ netlink_sup:start_link().
+
+stop(_State) ->
+ ok.