mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-14 03:12:21 +01:00
18 lines
292 B
JavaScript
18 lines
292 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('forums')
|
|
.controller('ForumsController', ForumsController);
|
|
|
|
ForumsController.$inject = ['$scope', '$translate'];
|
|
|
|
function ForumsController($scope, $translate) {
|
|
var vm = this;
|
|
|
|
vm.init = function () {
|
|
|
|
};
|
|
}
|
|
}());
|