mirror of
https://github.com/ansible/awx.git
synced 2026-02-03 02:28:12 -03:30
23 lines
597 B
JavaScript
23 lines
597 B
JavaScript
import atLibServices from '~services';
|
|
import atLibComponents from '~components';
|
|
import atLibModels from '~models';
|
|
|
|
import atFeaturesApplications from '~features/applications';
|
|
import atFeaturesCredentials from '~features/credentials';
|
|
import atFeaturesTemplates from '~features/templates';
|
|
import atFeaturesUsers from '~features/users';
|
|
|
|
const MODULE_NAME = 'at.features';
|
|
|
|
angular.module(MODULE_NAME, [
|
|
atLibServices,
|
|
atLibComponents,
|
|
atLibModels,
|
|
atFeaturesApplications,
|
|
atFeaturesCredentials,
|
|
atFeaturesTemplates,
|
|
atFeaturesUsers
|
|
]);
|
|
|
|
export default MODULE_NAME;
|