mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-30 03:41:50 -05:00
30 lines
842 B
JavaScript
30 lines
842 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 atFeaturesOutput from '~features/output';
|
|
import atFeaturesTemplates from '~features/templates';
|
|
import atFeaturesUsers from '~features/users';
|
|
import atFeaturesJobs from '~features/jobs';
|
|
import atFeaturesPortalMode from '~features/portalMode';
|
|
|
|
const MODULE_NAME = 'at.features';
|
|
|
|
angular.module(MODULE_NAME, [
|
|
atLibServices,
|
|
atLibComponents,
|
|
atLibModels,
|
|
atFeaturesApplications,
|
|
atFeaturesCredentials,
|
|
atFeaturesTemplates,
|
|
atFeaturesUsers,
|
|
atFeaturesJobs,
|
|
atFeaturesOutput,
|
|
atFeaturesTemplates,
|
|
atFeaturesPortalMode,
|
|
]);
|
|
|
|
export default MODULE_NAME;
|