mirror of
https://github.com/ansible/awx.git
synced 2026-02-18 19:50:05 -03:30
16 lines
493 B
JavaScript
16 lines
493 B
JavaScript
import Base from './Base';
|
|
import Config from './Config';
|
|
import Credential from './Credential';
|
|
import CredentialType from './CredentialType';
|
|
import Me from './Me';
|
|
import Organization from './Organization';
|
|
|
|
angular
|
|
.module('at.lib.models', [])
|
|
.service('BaseModel', Base)
|
|
.service('ConfigModel', Config)
|
|
.service('CredentialModel', Credential)
|
|
.service('CredentialTypeModel', CredentialType)
|
|
.service('MeModel', Me)
|
|
.service('OrganizationModel', Organization);
|