aboutsummaryrefslogtreecommitdiffstats
path: root/app/app.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/app.controller.js')
-rw-r--r--app/app.controller.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/app.controller.js b/app/app.controller.js
new file mode 100644
index 0000000..94e79a1
--- /dev/null
+++ b/app/app.controller.js
@@ -0,0 +1,17 @@
+(function () {
+
+ 'use strict';
+
+ angular
+ .module('dcaeApp')
+ .controller('AppController', AppController);
+
+ function AppController($state,
+ $timeout,
+ $rootScope) {
+
+ var vm = this;
+
+ }
+
+})();