blob: ca6a7a303506a048b8157454924c33db97f6fb18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "svc_sync_modules.h"
#include "rgw/rgw_sync_module.h"
void RGWSI_SyncModules::init()
{
sync_modules_manager = new RGWSyncModulesManager();
rgw_register_sync_modules(sync_modules_manager);
}
RGWSI_SyncModules::~RGWSI_SyncModules()
{
delete sync_modules_manager;
}
|