2018-04-22 18:52:55 +00:00
|
|
|
/*
|
2018-04-22 20:16:38 +00:00
|
|
|
* Wazuh app - Module for server initialization
|
2018-04-22 18:52:55 +00:00
|
|
|
* Copyright (C) 2018 Wazuh, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Find more information about this on the LICENSE file.
|
|
|
|
*/
|
2018-05-16 21:58:50 +00:00
|
|
|
|
|
|
|
// Imports all server modules
|
2018-09-10 08:32:49 +00:00
|
|
|
import { Initialize } from './server/initialize';
|
|
|
|
import { WazuhElasticRouter } from './server/routes/wazuh-elastic';
|
2018-09-03 09:46:55 +00:00
|
|
|
import { WazuhApiElasticRoutes } from './server/routes/wazuh-api-elastic';
|
2018-09-10 08:32:49 +00:00
|
|
|
import { Monitoring } from './server/monitoring';
|
|
|
|
import { WazuhApiRoutes } from './server/routes/wazuh-api';
|
|
|
|
import { WazuhReportingRoutes } from './server/routes/wazuh-reporting';
|
2018-04-21 10:09:55 +00:00
|
|
|
|
2018-09-10 08:32:49 +00:00
|
|
|
export function initApp(server) {
|
|
|
|
Initialize(server);
|
|
|
|
WazuhElasticRouter(server);
|
|
|
|
WazuhApiElasticRoutes(server);
|
|
|
|
Monitoring(server, false);
|
|
|
|
WazuhApiRoutes(server);
|
|
|
|
WazuhReportingRoutes(server);
|
|
|
|
}
|