Revision 3 (by ahitrov@rambler.ru, 2010/03/24 15:19:32) The CORE
package @NAME@::Init;

# ----------------------------------------------------------------------------
# ������������� ������� @NAME@. ������������� ����������� � ������
#    ������ Contenido::Init->init().
# � ���� ������ ����������� ������ ���� ������� init().
# ----------------------------------------------------------------------------

use strict;
use vars qw($VERSION @ISA @EXPORT);

use Exporter;
@ISA = qw(Exporter);
@EXPORT = qw();
$VERSION = '1.0';

use @NAME@::Apache;

# ��� ������� �������������� ��������-��������� 
sub init {
	return 0;
}

1;