mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-31 03:29:23 +01:00
18 lines
277 B
JavaScript
18 lines
277 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('vip')
|
|
.controller('VipController', VipController);
|
|
|
|
VipController.$inject = ['$scope', '$translate'];
|
|
|
|
function VipController($scope, $translate) {
|
|
var vm = this;
|
|
|
|
vm.init = function () {
|
|
|
|
};
|
|
}
|
|
}());
|