Files
meanTorrent/modules/rules/client/controllers/rules.client.controller.js
2017-05-06 20:50:59 +08:00

19 lines
382 B
JavaScript

(function () {
'use strict';
angular
.module('rules')
.controller('RulesController', RulesController);
RulesController.$inject = ['$scope', '$translate', 'getStorageLangService'];
function RulesController($scope, $translate, getStorageLangService) {
var vm = this;
vm.lang = getStorageLangService.getLang();
vm.init = function () {
};
}
}());