%%%---------------------------------------------------------------------- %%% File : ejabberd.erl %%% Author : Alexey Shchepin %%% Purpose : %%% Created : 16 Nov 2002 by Alexey Shchepin %%% Id : $Id$ %%%---------------------------------------------------------------------- -module(ejabberd). -author('alexey@sevcom.net'). -vsn('$Revision$ '). -export([start/0, stop/0]). start() -> application:start(ejabberd). stop() -> application:stop(ejabberd).