Files
dss.web/client/app/services/user/notification.service.js
Fergal Moran d2c529bafe Screw you git!
2015-12-01 19:50:20 +00:00

11 lines
233 B
JavaScript
Executable File

'use strict';
angular.module('dssWebApp')
.factory('NotificationService', function () {
return {
getNotifications: function () {
console.log('Notifications');
}
};
});