summaryrefslogtreecommitdiff
path: root/inttest/vsn_cache/main.erl
blob: 67b64652b369efc6c803a85e2bffd7e4de8f8f65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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.