-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
42 lines (33 loc) · 1.22 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* Module dependencies
*/
exports = module.exports = require('./package');
/**
* Expose the controller
*/
exports.controller = require('./controllers/hyper');
/**
* Expose the directives
*/
exports.hyper = require('./directives/hyper');
exports.hyperBind = require('./directives/hyper-bind');
exports.hyperForm = require('./directives/hyper-form');
exports.hyperImg = require('./directives/hyper-img');
exports.hyperImgBackground = require('./directives/hyper-img-background');
exports.hyperInput = require('./directives/hyper-input');
exports.hyperInputOptions = require('./directives/hyper-input-options');
exports.hyperLink = require('./directives/hyper-link');
exports.hyperRedirect = require('./directives/hyper-redirect');
/**
* Expose the services
*/
exports.hyperService = require('./services/hyper');
exports.hyperPathService = require('./services/hyper-path');
exports.hyperStatusService = require('./services/hyper-status');
exports.hyperLinkService = require('./services/hyper-link');
exports.hyperLinkFormatterService = require('./services/hyper-link-formatter');
exports.hyperBackendHTTPService = require('./services/hyper-backend-http');
/**
* Tell other modules how to load us
*/
exports.name = 'ng-hyper';