mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-19 22:02:24 +01:00
18 lines
287 B
JavaScript
18 lines
287 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('rules')
|
|
.controller('RulesController', RulesController);
|
|
|
|
RulesController.$inject = ['$scope', '$translate'];
|
|
|
|
function RulesController($scope, $translate) {
|
|
var vm = this;
|
|
|
|
vm.init = function () {
|
|
|
|
};
|
|
}
|
|
}());
|