tvl-depot/net/stomp_erl/src/stomp_app.erl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
162 B
Erlang
Raw Normal View History

2016-02-09 00:36:54 +01:00
-module(stomp_app).
2016-02-08 21:47:32 +01:00
-behaviour(application).
-export([start/2]).
-export([stop/1]).
start(_Type, _Args) ->
2016-02-09 01:17:21 +01:00
stomp_sup:start_link().
2016-02-08 21:47:32 +01:00
stop(_State) ->
ok.