summaryrefslogtreecommitdiff
path: root/inttest/vsn_cache/main.erl
diff options
context:
space:
mode:
Diffstat (limited to 'inttest/vsn_cache/main.erl')
-rw-r--r--inttest/vsn_cache/main.erl13
1 files changed, 13 insertions, 0 deletions
diff --git a/inttest/vsn_cache/main.erl b/inttest/vsn_cache/main.erl
new file mode 100644
index 0000000..67b6465
--- /dev/null
+++ b/inttest/vsn_cache/main.erl
@@ -0,0 +1,13 @@
+-module(main).
+-behaviour(application).
+
+-export([start/0,start/1,start/2,stop/1]).
+
+start() ->
+ start(permanent).
+start(_Restart) ->
+ ok.
+start(_Type,_Args) ->
+ ok.
+stop(_State) ->
+ ok.