24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-04 21:27:16 +02:00
xmpp.chapril.org-ejabberd/src/ejabberd.erl
Alexey Shchepin 83d6e9085f *** empty log message ***
SVN Revision: 63
2003-02-07 10:50:31 +00:00

25 lines
605 B
Erlang

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