Files
bansho/app/components/live/notifications.js
2015-01-15 16:56:37 -05:00

11 lines
291 B
JavaScript

'use strict';
angular.module('adagios.live', [])
.factory('GetProblems', ['$http', function ($http) {
// $http.get("/getproblems")
var problem_number = 44;
// factory function body that constructs shinyNewServiceInstance
return problem_number;
}]);