Line # Revision Author
1 234 ahitrov package blogs::Apache;
2
3 use strict;
4 use warnings 'all';
5
6 use blogs::State;
7 use Contenido::Globals;
8
9
10 sub child_init {
11 # встраиваем keeper плагина в keeper проекта
12 $keeper->{blogs} = blogs::Keeper->new($state->blogs);
13 }
14
15 sub request_init {
16 }
17
18 sub child_exit {
19 }
20
21 1;