-module(ss7MAPer_app). -author('Daniel Mende '). -behaviour(application). -export([start/2, stop/1]). start(_Type, Configfile) -> ss7MAPer_sup:start_link(Configfile). stop(_State) -> ok.