A simple file sharing site with an easy to use API and online panel.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
484B

  1. var angular = require('angular');
  2. var uirouter = require('angular-ui-router');
  3. var chart = require('angular-chart.js');
  4. var app = angular.module('shrimpa-panel', ['ui.router', 'AuthSvc', 'KeySvc', 'InviteSvc', 'UserSvc', 'StatSvc', 'KeyCtrl', 'InviteCtrl', 'UserCtrl', 'NavCtrl', 'DashCtrl', 'PanelRoutes']);
  5. app.run(['$rootScope', '$state', '$stateParams', function($rootScope, $state, $stateParams) {
  6. $rootScope.$state = $state;
  7. $rootScope.$stateParams = $stateParams;
  8. }]);