2018-11-02 18:59:51 +00:00
|
|
|
/*
|
|
|
|
* Wazuh app - File for app requirements and set up
|
2019-01-14 16:36:47 +00:00
|
|
|
* Copyright (C) 2015-2019 Wazuh, Inc.
|
2018-11-02 18:59:51 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
import { uiModules } from 'ui/modules';
|
|
|
|
import { AgentsPreviewController } from './agents-preview';
|
|
|
|
import { AgentsController } from './agents';
|
|
|
|
|
|
|
|
const app = uiModules.get('app/wazuh', []);
|
|
|
|
|
|
|
|
app
|
|
|
|
.controller('agentsController', AgentsController)
|
|
|
|
.controller('agentsPreviewController', AgentsPreviewController);
|