mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-30 16:36:29 +01:00
83d6e9085f
SVN Revision: 63
25 lines
605 B
Erlang
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).
|
|
|
|
|