xmpp.chapril.org-ejabberd/src/ejabberd.erl

22 lines
514 B
Erlang
Raw Normal View History

2002-11-18 21:39:47 +01:00
%%%----------------------------------------------------------------------
%%% 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]).
2002-11-18 21:39:47 +01:00
start() ->
application:start(ejabberd).
stop() ->
application:stop(ejabberd).