main.controller.js 271 Bytes
(function() {
    'use strict'
    
    angular.module('acufuel')
        .controller('MainController', [ '$scope', '$filter', '$rootScope', '$state', MainController]);
        
    function MainController($scope, $filter, $rootScope, $state) {
     
    	
    }
})();