blob: b78062a239f2443dd5b69f1f9e018fc303d484a4 [file] [log] [blame]
/**
* Controller for file
*
* @module app/configuration
* @exports fileController
* @name fileController
* @version 0.1.0
*/
window.angular && (function (angular) {
'use strict';
angular
.module('app.configuration')
.controller('fileController', [
'$scope',
'$window',
'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService){
$scope.dataService = dataService;
}
]
);
})(angular);